-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "simple-text2word-tokens",
"version": "0.0.2",
"description": "simple text to word tokenizer. accepts a custom regex. returns an array of tokens",
"main": "dist/index.js",
"source": "src/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.mjs",
"jsnext:main": "dist/index.mjs",
"scripts": {
"start": "webpack-dev-server --open",
"test": "mocha --require @babel/register",
"bundle": "microbundle"
},
"repository": {
"type": "git",
"url": "git://github.com/bboydflo/sttwt.git"
},
"bugs": {
"url": "https://github.com/bboydflo/sttwt/issues"
},
"keywords": ["tokenize", "text"],
"author": "Florin Cosmin Onciu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"microbundle": "^0.11.0",
"mocha": "^6.0.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}