-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "natural-brain",
"description": "A BrainJS neural network natural language classifier",
"version": "0.3.2",
"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": ">= 6"
},
"scripts": {
"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\"",
"jshint": "jshint src/. test/. --config",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"mocha": "mocha --opts mocha.ops",
"test": "npm run lint && npm run coverage",
"lint": "semistandard --fix"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"brain.js": "^1.6.1",
"debug": "^4.1.0",
"lodash.maxby": "^4.6.0",
"natural": "^0.6.2"
},
"devDependencies": {
"chai": "^4.2.0",
"expect.js": "^0.3.1",
"istanbul": "^1.1.0-alpha.1",
"jshint": "^2.9.6",
"mocha": "^6.0.0",
"semistandard": "^13.0.1"
}
}