forked from Planeshifter/text-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.76 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
{
"name": "text-miner",
"version": "1.0.6",
"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 && xvfb-run npm run test-browsers",
"test-cov": "istanbul cover --dir ./reports/coverage --report lcov tape -- \"./test/*.js\"",
"test-browsers": "browserify ./test/*.js | testling | tap-spec",
"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.0",
"stemmer": "^1.0.0",
"underscore": "~1.8.2",
"underscore.string": "^3.2.2",
"utils-define-read-only-property": "^1.0.0",
"validate.io-array-like": "^1.0.1",
"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.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"chai": "3.x.x",
"chai-as-promised": "^5.0.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.1",
"jshint": "^2.6.3",
"jshint-stylish": "2.x.x",
"mocha": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"testling": "^1.7.1"
}
}