-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 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
{
"name": "rungen",
"version": "0.3.2",
"description": "A generator runtime creator",
"main": "dist/index.js",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-eslint": "^5.0.0-beta8",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"conventional-changelog": "^0.5.3",
"eslint": "^1.10.3",
"expect": "^1.13.4",
"mocha": "^2.4.5",
"rimraf": "^2.5.1"
},
"scripts": {
"lint": "eslint src",
"compile": "rimraf lib && babel -d dist/ src/",
"prepublish": "npm run test && npm run compile",
"unit": "mocha --compilers js:babel-register --recursive test",
"test": "npm run lint && npm run unit",
"changelog": "conventional-changelog -i CHANGELOG.md -w -r 0 -p angular"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youknowriad/rungen.git"
},
"author": "Riad Benguella <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/youknowriad/rungen/issues"
},
"homepage": "https://github.com/youknowriad/rungen#readme"
}