forked from almapase/nlp-hub
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.72 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
{
"name": "nlp-hub-v4",
"version": "1.2.1",
"description": "The hub for natural language processing (nlp) engines. Fork (https://github.com/marcelofelman/nlp-hub.git)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"setup": "npm install",
"build": "tsc",
"pretest": "npm run build",
"test": "npm run test-only",
"clean": "shx rm -rf node_modules/ dist/ docs/",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./dev/src/",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll",
"test-only": "mocha --require ts-node/register --require source-map-support/register lib/**/*.spec.ts",
"test-with-coverage": "nyc npm run test"
},
"author": "Lorenzo Lamas",
"repository": {
"type": "git",
"url": "git+https://github.com/lorenzojlamas/nlp-hub-v4"
},
"keywords": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/lorenzojlamas/nlp-hub-v4/issues"
},
"homepage": "https://github.com/lorenzojlamas/nlp-hub-v4#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/async": "^3.0.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/nock": "^11.1.0",
"@types/request": "^2.48.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nock": "^11.3.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"shx": "^0.3.2",
"ts-node": "^8.3.0",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"dependencies": {
"async": "^3.1.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
}
}