-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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": "vue-router-transition",
"version": "1.0.9",
"description": "A page transition plugin for vue-router",
"main": "lib/index.js",
"scripts": {
"build": "npm run lint && npm run build-cjs && npm run build-umd",
"build-cjs": "rimraf lib && babel ./index.js -d lib",
"build-umd": "rimraf umd && webpack -p",
"lint": "eslint --format node_modules/eslint-friendly-formatter ./index.js",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weinot/vue-router-transition.git"
},
"keywords": [
"vue",
"vue-router",
"transition"
],
"author": "vnot",
"license": "MIT",
"bugs": {
"url": "https://github.com/weinot/vue-router-transition/issues"
},
"homepage": "https://github.com/weinot/vue-router-transition#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.1.1",
"eslint-config-standard": "^5.3.5",
"eslint-friendly-formatter": "^2.0.6",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"webpack": "^1.12.9"
}
}