forked from mysamai/natural-brain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.77 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
57
58
59
{
"name": "natural-brain",
"description": "A BrainJS neural network natural language classifier",
"version": "0.2.3",
"homepage": "https://github.com/mysamai/natural-brain",
"main": "lib/",
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mysamai/natural-brain.git"
},
"author": {
"name": "David Luecke",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/mysamai/natural-brain/issues"
},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"compile": "rimraf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha --recursive test/ --compilers js:babel-core/register",
"test": "npm run compile && npm run jshint && npm run mocha",
"start": "npm run compile && node example/app"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"brain.js": "^0.7.0",
"debug": "^2.2.0",
"lodash.maxby": "^4.4.0",
"natural": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"expect.js": "^0.3.1",
"jshint": "^2.9.2",
"mocha": "^3.0.1",
"rimraf": "^2.5.3"
}
}