forked from carlfriess/nupic.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "nupic.tools",
"version": "0.0.2",
"author": "Numenta.org <[email protected]>",
"description": "Set of tools for integration between github, travis, and our developer workflow.",
"contributors": [{
"name": "Matt Taylor",
"email": "[email protected]"
},
{
"name": "Carl Friess",
"email": "[email protected]"
},
{
"name": "Jeff Fohl",
"email": "[email protected]"
}],
"main": "program.js",
"scripts": {
"preinstall": "npm install -g forever",
"test": "istanbul cover _mocha -- --recursive -R spec && istanbul report text-summary > coverage/summary.txt && node bin/validate-coverage.js",
"start": "node program.js"
},
"repository": {
"type": "git",
"url": "https://github.com/numenta/nupic.tools.git"
},
"dependencies": {
"colors" : "*",
"connect" : "*",
"request" : "*",
"github" : "*",
"ansi-to-html" : "*",
"jsdom" : "*",
"q" : "~1.0.0"
},
"devDependencies": {
"proxyquire": "0.5.x",
"mocha": "1.12.x",
"istanbul": "0.1.x",
"sinon": "1.7.x"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}