-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 948 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
37
38
39
40
41
{
"name": "dsa-js",
"version": "0.0.0",
"description": "Data Structures and Algorithms in JavaScript",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test"
},
"keywords": [
"data-structures",
"javascript",
"algorithms"
],
"author": "Ivan Storck",
"license": "MIT",
"devDependencies": {
"app-root-path": "^0.1.0",
"browserify": "^4.2.1",
"chai": "^1.9.1",
"debowerify": "^0.8.1",
"grunt": "^0.4.5",
"grunt-browserify": "^3.0.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-express-server": "^0.4.19",
"grunt-jsdoc": "^0.5.7",
"grunt-shell": "^1.0.1",
"grunt-simple-mocha": "^0.4.0",
"matchdep": "^0.3.0",
"mocha": "^1.20.1"
},
"dependencies": {
"express": "^4.8.6",
"underscore": "^1.7.0"
}
}