-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 735 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 735 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
{
"name": "css3-animation-generator",
"version": "0.1.1",
"main": "src/main.js",
"license": "MIT",
"dependencies": {
"babel-loader": "^7.1.2",
"iview": "^2.7.3",
"vue": "2.5.8",
"vuex": "^2.3.0"
},
"scripts": {
"dev": "poi dev src/main.js",
"build": "poi build src/main.js --dist ./dist",
"content": "babel src/content-script.js --out-file ./static/content-script.js --presets=es2015,babili",
"make": "sh gen/make.sh",
"app": "npm run build && npm run content && npm run make"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babili": "^0.0.12",
"poi": "^9.5.4",
"vue-loader": "^13.5.0",
"vue-style-loader": "^3.0.3"
}
}