-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
84 lines (84 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vuet",
"version": "0.2.2",
"description": "Vue state management plugin",
"main": "dist/vuet.js",
"scripts": {
"env": "node_modules/.bin/cross-env",
"gulp": "node_modules/.bin/gulp",
"dev": "node examples/server",
"dev:test": "npm run env NODE_ENV=development npm run gulp",
"build": "npm run env NODE_ENV=production npm run gulp build",
"lint": "npm run env NODE_ENV=testing npm run gulp lint",
"unit": "npm run env NODE_ENV=testing npm run gulp unit",
"test": "npm run lint && npm run unit && npm run build",
"e2e": "testcafe all test/e2e/**.js --app 'node examples/server.js'"
},
"files": [
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/medatc/vuet.git"
},
"homepage": "https://github.com/medatc/vuet#readme",
"bugs": {
"url": "https://github.com/medatc/vuet/issues"
},
"keywords": [
"vue",
"vue2",
"vue-router",
"vuex",
"vuet",
"vuex"
],
"author": "medatc",
"license": "MIT",
"devDependencies": {
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"cross-env": "^5.0.0",
"css-loader": "^0.28.4",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-testcafe": "^0.2.1",
"express": "^4.15.3",
"express-urlrewrite": "^1.2.0",
"gulp": "^3.9.1",
"gulp-ava": "^0.17.1",
"gulp-eslint": "^3.0.1",
"gulp-testcafe": "^0.9.1",
"jsdom": "^10.1.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.2",
"testcafe": "0.16.0",
"vue": "^2.3.3",
"vue-loader": "^12.1.1",
"vue-router": "^2.5.3",
"vue-template-compiler": "^2.3.3",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.10.2",
"whatwg-fetch": "^2.0.3"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"ava": {
"require": [
"babel-register"
]
}
}