-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "kirby-git",
"version": "1.0.0",
"description": "Automatic Version Control for Kirby 3",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wottpal/kirby-git.git"
},
"author": "Dennis Kerzig",
"license": "ISC",
"bugs": {
"url": "https://github.com/wottpal/kirby-git/issues"
},
"homepage": "https://github.com/wottpal/kirby-git#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "watchify -vd -p browserify-hmr -e src/main.js -o index.js",
"build": "cross-env NODE_ENV=production browserify -g envify -p [ vueify/plugins/extract-css -o index.css ] -p bundle-collapser/plugin -e src/main.js | uglifyjs -c warnings=false -m > index.js"
},
"browserify": {
"transform": [
"babelify",
"vueify"
]
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"browserify-hmr": "^0.3.6",
"bundle-collapser": "^1.3.0",
"cross-env": "^5.2.0",
"envify": "^4.1.0",
"uglify-js": "^3.4.7",
"vue": "^2.5.17",
"vueify": "^9.4.1",
"watchify": "^3.11.0"
}
}