-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
42
43
44
45
46
47
48
{
"name": "scoutfile",
"version": "1.0.0",
"description": "Tools to generate a scout file for a client-side JS application",
"main": "lib/index.js",
"dependencies": {
"async": "^0.9.0",
"bluebird": "^2.9.2",
"css-loader": "^0.9.1",
"file-loader": "^0.8.1",
"handlebars-loader": "^0.1.8",
"json-loader": "^0.5.1",
"lodash": "^2.4.1",
"memory-fs": "^0.2.0",
"raw-loader": "^0.5.1",
"sass-loader": "^0.4.0-beta.1",
"webpack": "^1.5.3",
"yaml-loader": "^0.1.0"
},
"devDependencies": {
"ghooks": "^0.2.4",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-jscs": "^1.5.0",
"jsdom": "^3.1.1",
"webpack-dev-server": "^1.7.0"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "[email protected]:bazaarvoice/scoutfile.git"
},
"author": "Bazaarvoice",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/bazaarvoice/scoutfile/issues"
},
"homepage": "https://github.com/bazaarvoice/scoutfile",
"config": {
"ghooks": {
"pre-push": "grunt",
"pre-commit": "grunt jscs jshint"
}
}
}