-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
92 lines (92 loc) · 2.38 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
85
86
87
88
89
90
91
92
{
"name": "vuet",
"version": "1.0.3",
"description": "Vue state management plugin",
"main": "dist/vuet.js",
"scripts": {
"dev": "node examples/server",
"watch": "npm-watch",
"watch:test": "clear && npm run lint && npm run unit && npm run build",
"build": "node build/build.js",
"lint": "eslint ./ --ext .vue --ext .js --fix",
"unit": "nyc ava test/unit --verbose",
"test": "npm run lint && npm run unit && npm run e2e && npm run build",
"e2e": "testcafe all test/e2e/**.js --app 'node examples/server.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist/",
"src/",
"images"
],
"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": {
"ava": "^0.20.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-assign": "^6.22.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",
"coveralls": "^2.13.1",
"css-loader": "^0.28.4",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^3.0.0",
"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",
"npm-watch": "^0.2.0",
"nyc": "^11.0.3",
"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.2",
"vue": "^2.3.4",
"vue-loader": "^12.1.1",
"vue-router": "^2.5.3",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.0.0",
"webpack-dev-middleware": "^1.10.2",
"whatwg-fetch": "^2.0.3"
},
"ava": {
"require": [
"babel-register"
]
},
"watch": {
"watch:test": {
"patterns": "./",
"ignore": [
"dist",
".nyc_output",
"coverage"
],
"extensions": "js,html,vue"
}
}
}