forked from rmurphey/js-assessment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 944 Bytes
/
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
{
"author": "Rebecca Murphey <[email protected]> (http://rmurphey.com)",
"name": "js-assessment",
"description": "A test-driven assessment of JavaScript skills",
"version": "0.1.0",
"homepage": "http://rmurphey.com",
"repository": {
"type": "git",
"url": "git://github.com/rmurphey/js-assessment.git"
},
"engines": {
"node": "~0.6.8"
},
"dependencies": {
"express" : "2.5.x",
"underscore" : "1.3.x",
"amdefine" : "0.0.2",
"expect.js" : "0.1.2",
"grunt" : "~0.4.0",
"grunt-contrib-jshint" : "~0.1.0"
},
"devDependencies": {
"mocha" : "1.2.x",
"requirejs" : "1.0.x",
"grunt-contrib-livereload" : "~0.1.2",
"grunt-contrib-watch" : "~0.4.4"
},
"scripts": {
"start": "node bin/serve",
"test": "./node_modules/mocha/bin/mocha -R spec tests/runner.js"
},
"bin" : "bin/serve",
"bugs" : {
"url" : "https://github.com/rmurphey/js-assessment/issues"
}
}