-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 876 Bytes
/
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
{
"name": "tbabelcli",
"version": "1.0.0",
"description": "try ES6 with bable-cli",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d lib",
"watch": "npm-watch",
"start": "node lib/app.js"
},
"watch": {
"build": "{src,test}/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lugithub/tbabelcli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lugithub/tbabelcli/issues"
},
"homepage": "https://github.com/lugithub/tbabelcli#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.24.1",
"npm-watch": "^0.1.8"
},
"dependencies": {
"babel-polyfill": "^6.23.0"
}
}