forked from nlp-compromise/es-compromise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"author": "Spencer Kelly <[email protected]> (http://spencermounta.in)",
"name": "es-compromise",
"description": "Modesto procesamiento del lenguaje natural",
"version": "0.2.6",
"main": "./src/index.js",
"browser": "./builds/es-compromise.min.js",
"unpkg": "./builds/es-compromise.min.js",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": "./builds/es-compromise.mjs",
"require": "./builds/es-compromise.cjs"
}
},
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/nlp-compromise/es-compromise.git"
},
"scripts": {
"test": "tape \"./tests/**/*.test.js\" | tap-dancer",
"testb": "TESTENV=prod npm run test",
"build": "npm run version && rollup -c --silent",
"version": "node ./scripts/version.js",
"pack": "node ./scripts/pack.js",
"score": "node ./learn/wikicorpus/test.js",
"watch": "amble ./scratch.js",
"stress": "node scripts/stress.js"
},
"files": [
"builds/",
"docs/"
],
"dependencies": {
"compromise": "14.8.0",
"efrt": "2.7.0",
"suffix-thumb": "4.0.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "14.1.0",
"amble": "1.3.0",
"rollup": "2.79.1",
"rollup-plugin-terser": "7.0.2",
"tap-dancer": "0.3.4",
"tape": "5.6.1",
"xml-stream": "^0.4.5"
},
"license": "MIT"
}