-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.11 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.11 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
{
"name": "lab-ngrammer",
"version": "1.2.0",
"description": "Calculates ngrams from a json documnet",
"main": "dist/src/ngrammer.js",
"types": "dist/src/ngrammer.d.ts",
"scripts": {
"extract": "node dist/src/extract.js",
"build": "tsc",
"test": "jest"
},
"bin": {
"lab-ngrammer": "bin/extract.js"
},
"keywords": [],
"author": "LabLabLab",
"license": "ISC",
"devDependencies": {
"@types/jest": "^21.1.10",
"@types/node": "^8.10.12",
"jest": "^21.2.1",
"ts-jest": "^21.2.4",
"typescript": "^2.8.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"testEnvironment": "node"
},
"dependencies": {
"@types/natural": "^0.2.33",
"@types/nconf": "0.0.37",
"compromise": "^11.7.0",
"natural": "^0.5.6",
"nconf": "^0.10.0",
"term-vector": "^0.1.2",
"wink-nlp-utils": "^1.8.0"
}
}