-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.52 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "jetrunner",
"version": "1.1.0",
"title": "JetRunner Unit Test Server",
"description": "Yo, I heard you like unit tests, bro! JetRunner is the illest name in unit testing!",
"homepage": "http://peteromano.github.com/jetrunner/",
"keywords": [
"jetfuel",
"jetrunner",
"mocha",
"grunt",
"queen",
"test",
"test-runner",
"runner"
],
"author": {
"name": "Pete Romano",
"email": "[email protected]",
"url": "http://peteromano.net"
},
"repository": {
"type": "git",
"url": "https://github.com/peteromano/jetrunner"
},
"bugs": {
"url": "https://github.com/peteromano/jetrunner/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.6.0"
},
"main": "./lib",
"man": "./man/jetrunner.1",
"bin": {
"jetrunner": "./bin/jetrunner"
},
"directories": {
"bin": "bin",
"lib": "lib",
"man": "man",
"test": "test",
"doc": "doc",
"example": "example"
},
"scripts": {
"test": "mocha ./test -R spec"
},
"dependencies": {
"express": "~3.0.0rc5",
"jade": "~0.27.6",
"soda": "~0.2.5",
"browserstack": "~0.2.0",
"optimist": "~0.3.7",
"colors": "~0.6.0",
"tap": "~0.4.1",
"tap-results": "~0.0.2"
},
"devDependencies": {
"jamjs": "~0.2.17",
"jsdoc": "git://github.com/jsdoc3/jsdoc.git#master"
},
"jam": {
"packageDir": "example/vendor",
"dependencies": {
"json3": "~3.2.2",
"mocha": "~1.9.0",
"chai": "~1.5.0",
"sinon": "*"
}
}
}