forked from Planeshifter/text-miner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
{
"name": "text-miner",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/Planeshifter/text-miner.git"
},
"description": "text mining utilities",
"main": "build/text-miner.min.js",
"scripts": {
"prepublish": "./node_modules/.bin/grunt uglify",
"test": "./node_modules/.bin/mocha",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls"
},
"keywords": [
"text-mining",
"text-analytics"
],
"author": "Philipp Burckhardt",
"license": "MIT",
"dependencies": {
"underscore": "~1.8.2",
"natural": "~0.2.1",
"underscore.string": "~3.0.3"
},
"devDependencies": {
"chai": "^2.1.2",
"coveralls": "^2.11.2",
"istanbul": "^0.3.8",
"jshint": "^2.6.3",
"jshint-stylish": "^1.0.1",
"mocha": "^2.1.0",
"chai-as-promised": "^4.3.0",
"grunt": "~0.4.5",
"grunt-browserify": "^3.5.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1"
}
}