-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "test-driven-tuesday",
"description": "The basics of growing JavaScript applications",
"author": "Jan Molak <[email protected]>",
"license": "MIT",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/jan-molak/test-driven-tuesday.git"
},
"dependencies" : {
"moment": "2.6.0",
"q": "1.0.1"
},
"devDependencies": {
"chai": "1.9.0",
"chai-as-promised": "4.1.1",
"grunt": "0.4.2",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-jshint": "0.8.0",
"grunt-contrib-watch": "0.5.3",
"grunt-mocha-cov": "0.2.1",
"rewire": "2.0.0",
"sinon": "1.9.1",
"sinon-chai": "2.5.0",
"lorem-ipsum": "1.0.1"
},
"scripts": {
"blanket": {
"pattern": [
"src"
],
"data-cover-never": [
"spec"
]
}
}
}