-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "jetfuel-blackbox",
"version": "2.2.0",
"title": "BlackBox Client-Side Application Framework",
"description": "Currently, BlackBox is a boilerplate client-side application framework, built on top of the JetFuel build system and Grunt, Backbone, RequireJS, JetRunner unit test server (Mocha BDD/TDD test framework + PhantomJS + SauceLabs cloud integration), Dust (and Plate Django port) for templating (both client and server-side), Sass, Express dynamic web server, etc. BlackBox is the template used for JetFuel's basic `init` command.",
"homepage": "https://github.com/peteromano/jetfuel-blackbox/wiki",
"keywords": [
"blackbox",
"jetfuel"
],
"author": {
"name": "Pete Romano",
"email": "[email protected]",
"url": "http://peteromano.net"
},
"dependencies": {
"express": "~3.0.3",
"dustjs-linkedin": "~1.1.1",
"klei-dust": "~0.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/peteromano/jetfuel-blackbox"
},
"bugs": {
"url": "https://github.com/peteromano/jetfuel-blackbox/issues"
},
"directories": {
"example": "./example",
"src": "./src",
"test": "./build/test",
"doc": "./build/doc",
"lib": "./build/js"
},
"scripts": {
"build": "npm up && jetfuel build",
"test": "npm up && jetfuel test",
"doc": "jetfuel docs",
"start": "node ./server"
},
"engines": {
"node": ">= 0.6.0"
},
"jam": {
"packageDir": "vendor",
"dependencies": {
"mocha": "~1.6.0",
"chai": "~1.3.0",
"jquery": "~1.8.0",
"backbone": "0.9.9",
"dustjs-linkedin": "~1.1.1",
"plate": "~1.0.5",
"sinon": "*",
"requirejs-plugins": "*",
"modernizr": "*"
}
}
}