-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 KB
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
39
40
{
"name": "fast-pos",
"description": "Fast parts of speech for javascript",
"version": "1.0.1",
"main": "./lib/fast-pos.js",
"devDependencies": {
"babel-cli": "^6.2.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"scripts": {
"build": "babel src --out-dir lib && cp ./src/data/* ./lib/data/",
"test-es5": "npm run build && babel test --out-dir test-es5 && sed -i '.bak' 's/\\/src\\//\\/lib\\//' test-es5/*.js",
"test": "npm run build && mocha --ui tdd --timeout 10000 --compilers js:babel-core/register --require test/mocha-babel",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [],
"author": {
"name": "Cason Clagg",
"url": "https://github.com/casonclagg"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/casonclagg/fast-pos"
},
"dependencies": {
"fs-extra": "^1.0.0",
"lodash": "^4.17.2"
}
}