-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "text-miner",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/Planeshifter/text-miner.git"
},
"description": "text mining utilities",
"main": "lib/index.js",
"scripts": {
"test": "if [ \"${TRAVIS}\" ]; then npm run test-ci; else npm run test-local; fi",
"test-local": "tape \"./test/*.js\" | tap-spec",
"test-ci": "npm run test-local",
"test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
"coverage": "istanbul cover --dir ./reports/codecov/coverage --report lcovonly tape -- \"./test/*.js\" && cat ./reports/codecov/coverage/lcov.info | codecov && rm -rf ./reports/codecov"
},
"keywords": [
"text-mining",
"text-analytics",
"document-term-matrix",
"dtm",
"text-analysis"
],
"author": {
"name": "Philipp Burckhardt",
"email": "pburckhardt@outlook.com"
},
"license": "MIT",
"dependencies": {
"lancaster-stemmer": "^1.0.5",
"stemmer": "^1.0.5",
"underscore": "~1.13.6",
"underscore.string": "^3.3.6",
"utils-define-read-only-property": "^1.0.0",
"validate.io-array-like": "^1.0.2",
"validate.io-boolean-primitive": "^1.0.0",
"validate.io-object": "^1.0.4",
"validate.io-object-array": "^1.0.0",
"validate.io-string-array": "^1.0.0",
"validate.io-string-primitive": "^1.0.1"
},
"devDependencies": {
"codecov": "^3.8.3",
"istanbul": "^0.4.5",
"jshint": "^2.13.6",
"jshint-stylish": "^2.2.1",
"tap-spec": "^5.0.0",
"tape": "^5.6.3"
}
}