-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "mvvm-es6",
"version": "1.0.0",
"description": "es6 mvvm vue",
"main": "dist/mvvm.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node build/devServer.js",
"build": "npm run build:lib && npm run build:docs",
"build:lib": "webpack --progress --hide-modules && NODE_ENV=production webpack --progress --hide-modules",
"build:docs": "NODE_ENV=production webpack --progress --hide-modules --config ./build/webpack.doc.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liyanlong/mvvm.git"
},
"keywords": [
"es6",
"mvvm",
"vue",
"js"
],
"author": "liyl",
"license": "ISC",
"bugs": {
"url": "https://github.com/liyanlong/mvvm/issues"
},
"homepage": "https://github.com/liyanlong/mvvm#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"html-webpack-plugin": "^2.30.1",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2",
"webpack-merge": "^4.1.0"
}
}