forked from spencermountain/compromise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": "Spencer Kelly <spencermountain@gmail.com> (http://spencermounta.in)",
"name": "compromise",
"description": "natural language processing in the browser",
"version": "11.14.2",
"main": "./builds/compromise.js",
"unpkg": "./builds/compromise.min.js",
"types": "types",
"repository": {
"type": "git",
"url": "git://github.com/nlp-compromise/compromise.git"
},
"scripts": {
"test": "tape \"./test/unit/**/*.test.js\" | tap-dancer",
"test:spec": "tape \"./test/unit/**/*.test.js\" | tap-spec",
"testb": "TESTENV=prod tape \"./test/unit/**/*.test.js\" | tap-dancer",
"buildTest": "TESTENV=prod node ./scripts/test.js",
"test:types": "dtslint types",
"browserTest": "node ./scripts/browserTest.js",
"benchmark": "node ./scripts/benchmark.js",
"build": "node ./scripts/build/index.js",
"pack": "node ./scripts/pack.js",
"prepublishOnly": "node ./scripts/prepublish && npm run test:types",
"postpublish": "node ./scripts/postpublish",
"watch": "amble ./scratch.js",
"filesize": "node ./scripts/lib/filesize.js",
"coverage": "node ./scripts/postpublish/coverage.js",
"lint": "node ./scripts/prepublish/linter.js"
},
"files": [
"builds/",
"docs/",
"compromise.d.ts"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {
"efrt-unpack": "2.2.0"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"amble": "0.0.7",
"babelify": "10.0.0",
"babili": "0.1.4",
"browserify": "16.3.0",
"chalk": "2.4.2",
"codecov": "3.5.0",
"compromise-plugin": "0.0.9",
"derequire": "2.0.6",
"dtslint": "0.9.0",
"nyc": "14.1.1",
"shelljs": "0.8.3",
"tap-dancer": "0.2.0",
"tape": "4.11.0",
"terser": "4.1.2"
},
"license": "MIT"
}