-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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": "toolup",
"version": "1.1.4",
"description": "Rapidly setup an es6, es7 or react dev environment",
"main": "lib/index.js",
"dependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.1",
"inquirer": "^0.12.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"eslint": "^2.0.0",
"eslint-config-airbnb": "^5.0.0",
"sinon": "^1.17.3",
"tape": "^4.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bencooling/toolup.git"
},
"scripts": {
"test": "babel-node test",
"dev": "babel-node src/index.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"keywords": [
"babel",
"webpack",
"tool",
"cli",
"es6",
"es7",
"react",
"fatique",
"toolup",
"scaffold",
"dev"
],
"preferGlobal": true,
"bin": {
"toolup": "lib/index.js"
},
"author": "Ben Cooling <[email protected]> (http://bcooling.com.au)",
"license": "ISC"
}