-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (47 loc) · 1.32 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
{
"title": "backbone-require-karma",
"name": "backbone-require-karma",
"description": "Example / base backbone, karma, requirejs, grunt, bower, project that uses node express to create a web server ",
"version": "0.0.2",
"author": "Paul Cook",
"homepage": "http://github.com/levexis",
"private": false,
"contributors": [
"Paul Cook <[email protected]> (http://linkedin.com/in/adtechzen)"
],
"engines": {
"node": "0.10.22"
},
"scripts": {
"start": "app.js",
"test": "./node_modules/karma/bin/karma start",
"build": "grunt"
},
"dependencies": {
"express": "latest"
},
"devDependencies": {
"grunt": "latest",
"grunt-cli": "latest",
"bower": "latest",
"chai": "latest",
"mocha": "latest",
"nodemon": "latest",
"karma": "0.10.1",
"karma-mocha": "latest",
"karma-requirejs": "latest",
"karma-sinon-chai": "latest",
"karma-chai-backbone": "latest",
"karma-safari-launcher": "latest",
"grunt-bower-task": "~0.3.4",
"grunt-karma": "0.7.1",
"phantomjs": "1.9.7-1",
"karma-phantomjs-launcher": "~0.1.0",
"karma-firefox-launcher": "~0.1.0",
"karma-chrome-launcher": "~0.1.0",
"karma-coverage" : "latest",
"karma-coffee-preprocessor": "~0.1.3",
"karma-ie-launcher": "latest",
"karma-htmlfile-reporter": "0.1.0"
}
}