-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.09 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
{
"name": "grunt-boreless-boilerplate",
"version": "0.3.0",
"engines": {
"node": ">=0.10.10",
"npm": ">=1.2.15"
},
"private": false,
"dependencies": {},
"devDependencies": {
"git-hooks": "0.0.7",
"grunt": "0.4.x",
"grunt-concurrent": "~0.4.1",
"grunt-contrib-clean": "0.5.x",
"grunt-contrib-copy": "0.4.x",
"grunt-contrib-jshint": "0.6.x",
"grunt-contrib-less": "0.7.x",
"grunt-contrib-requirejs": "0.4.x",
"grunt-contrib-uglify": "0.2.x",
"grunt-contrib-watch": "0.5.x",
"grunt-jscs": "^0.7.1",
"grunt-karma": "0.9.0",
"jscs": "^1.6.2",
"karma": "0.12.8",
"karma-chrome-launcher": "0.1.x",
"karma-coverage": "0.1.x",
"karma-junit-reporter": "0.1.x",
"karma-mocha": "0.1.x",
"karma-phantomjs-launcher": "0.1.x",
"karma-requirejs": "0.1.x",
"mocha": "~1.13.0",
"phantomjs": "1.9.x"
},
"scripts": {
"install": "bower install; cd server; npm install; cd ..",
"build": "grunt release",
"update": "bower update; grunt release",
"test": "grunt test",
"start": "node server/server.js"
}
}