-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
133 lines (133 loc) · 3.21 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "corenlp",
"version": "1.5.2",
"description": "A NodeJS CoreNLP library",
"main": "dist/index.js",
"browser": {
"child-process-promise": false,
"load-json-file": false,
"request": false,
"request-promise-native": "./src/polyfills/request-promise-native.js",
"tmp-file": false
},
"scripts": {
"clean": "gulp clean",
"corenlp:download": "./scripts/corenlp-download",
"corenlp:server": "./scripts/corenlp-server",
"compile": "gulp compile",
"build": "gulp build",
"build:browser": "gulp build:browser",
"prepublish": "npm run lint && npm run test && npm run compile",
"lint": "eslint \"src/**/*.js\" \"test/*.js\"",
"lint:fix": "npm run lint -- --fix",
"test": "nyc --reporter=html --reporter=text mocha test/setup.js --sort \"src/**/*.spec.js\" --compilers js:babel-core/register --timeout 30000",
"test:watch": "npm run test -- --watch",
"doc": "DEBUG=gulp-jsdoc3 gulp doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerardobort/node-corenlp.git"
},
"keywords": [
"corenlp",
"nlp",
"natural",
"language",
"processing",
"stanford",
"corenlp"
],
"author": "Gerardo Bort",
"license": "GPL-3.0",
"files": [
"dist",
"scripts",
"examples/runkit.js"
],
"bugs": {
"url": "https://github.com/gerardobort/node-corenlp/issues"
},
"homepage": "https://github.com/gerardobort/node-corenlp#readme",
"runkitExampleFilename": "examples/runkit.js",
"engines": {
"node": ">=6 <9"
},
"babel": {
"plugins": [
"transform-object-rest-spread",
[
"fast-async",
{
"spec": true
}
]
],
"presets": [
[
"env",
{
"targets": {
"node": "6"
},
"exclude": [
"transform-regenerator"
]
}
]
]
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": []
}
]
]
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.0.0",
"chai": "^4.1.1",
"cz-conventional-changelog": "^2.0.0",
"docdash": "^0.4.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"fast-async": "^6.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean": "^0.3.2",
"gulp-copy": "^1.1.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-minify": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-sequence": "^0.4.6",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"sinon": "^3.1.0",
"sinon-chai": "^2.12.0",
"vinyl-source-stream": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"child-process-promise": "^2.2.1",
"load-json-file": "^3.0.0",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.head": "^4.0.1",
"lodash.reduce": "^4.6.0",
"lodash.uniq": "^4.5.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.4",
"tmp-file": "^2.0.1"
}
}