-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "jit-grunt",
"version": "0.10.0",
"description": "JIT plugin loader for Grunt.",
"keywords": [
"grunt",
"gruntplugin",
"jit",
"loader"
],
"homepage": "https://github.com/shootaroo/jit-grunt",
"bugs": "https://github.com/shootaroo/jit-grunt/issues",
"license": "MIT",
"author": {
"name": "shootaroo",
"email": "[email protected]"
},
"files": [
"lib",
"jit-grunt.js"
],
"main": "jit-grunt",
"repository": {
"type": "git",
"url": "git://github.com/shootaroo/jit-grunt.git"
},
"scripts": {
"test": "npm-run-all build -p lint mocha",
"build": "babel src -d lib",
"watch": "babel src -d lib --watch",
"jscs": "grunt jscs",
"jshint": "grunt jshint",
"lint": "npm-run-all -p jscs jshint",
"mocha": "grunt mochaTest",
"precommit": "npm test",
"prepush": "npm test"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"espower-babel": "^4.0.0",
"grunt": "^0.4.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jscs": "^2.7.0",
"grunt-mocha-test": "^0.12.0",
"husky": "^0.11.1",
"mocha": "^2.4.5",
"npm-run-all": "^1.5.1",
"power-assert": "^1.2.0",
"sinon": "^1.17.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"engines": {
"node": ">=0.10.0"
}
}