forked from aniaw/js-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 741 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 741 Bytes
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
{
"name": "js-workshop",
"description": "JavaScript Workshop",
"version": "0.0.0",
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-connect": "^0.7.1",
"karma-phantomjs-launcher": "~0.1.4",
"karma": "~0.12.16",
"karma-coverage": "~0.2.4",
"karma-jasmine": "~0.1.5",
"karma-spec-reporter": "0.0.13"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aniaw/js-workshop"
},
"scripts": {
"start": "grunt karma:dev",
"test": "grunt karma:unit"
}
}