-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 728 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 728 Bytes
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
{
"name": "node-cli-app",
"version": "0.0.1",
"description": "Simple start point w/ babel support to begin writing an ES6-based node command line application",
"main": "main.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch"
},
"keywords": [
"node",
"cli",
"starter",
"babel",
"webpack",
"bundle"
],
"author": "Kyle Rector",
"license": "ISC",
"contributors": [
{
"name": "Kyle Rector",
"github": "https://github.com/krtools"
}
],
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"chalk": "^1.1.3",
"uglify-js": "^2.7.5",
"webpack": "^1.14.0"
}
}