-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.28 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
51
52
{
"name": "nextpresso",
"version": "0.1.5",
"main": "./dist/index.js",
"author": {
"name": "Martin Haagensli",
"url": "https://twitter.com/mhaagens"
},
"repository": {
"type": "git",
"url": "https://github.com/mhaagens/nextpresso.git"
},
"license": "MIT",
"bin": {
"nextpresso": "./dist/index.js"
},
"scripts": {
"start": "rollup --config rollup.config.js --watch",
"build": "rollup --config rollup.config.js"
},
"dependencies": {
"acorn": "^5.2.1",
"chalk": "^2.3.0",
"commander": "^2.11.0",
"fs-extra": "^4.0.2",
"inquirer": "^4.0.0",
"mkdirp": "^0.5.1",
"ora": "^1.3.0",
"prettier": "^1.8.2",
"progress": "^2.0.0",
"shift-codegen": "^5.0.5",
"shift-parser": "^5.2.3",
"shift-traverse": "^1.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-latest": "^6.24.1",
"rollup": "^0.51.8",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.1.10"
},
"engines": {
"node": ">=8.0.0"
}
}