-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "6to5-scaffolding",
"version": "0.0.1",
"description": "ES6 project scaffolding",
"main": "dist/index.js",
"keywords": [
"ES6",
"ECMAScript6",
"ECMAScript 6",
"ECMAScript.next",
"skeleton",
"scaffolding"
],
"repository": {
"type": "git",
"url": "https://github.com/es6rocks/scaffolding.git"
},
"bugs": {
"url": "https://github.com/es6rocks/scaffolding/issues"
},
"engines": {
"node": ">= 0.10"
},
"files": [
"dist",
"!dist/test"
],
"scripts": {
"prepublish": "npm i grunt-6to5 && grunt build && npm test",
"test": "grunt test"
},
"author": {
"name": "Jaydson Gomes",
"email": "[email protected]"
},
"license": "WTFPL",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-6to5": "^1.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-copy": "^0.7.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-jscs": "^0.8.1",
"grunt-mocha-test": "^0.12.2",
"load-grunt-tasks": "^1.0.0",
"mocha": "^2.0.0",
"should": "^4.1.0"
}
}