forked from JiriChara/vuex-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.41 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
{
"name": "vuex-crud",
"version": "0.3.2",
"description": "A library for Vuex to build CRUD modules easily",
"main": "lib/index.js",
"repository": "https://github.com/JiriChara/vuex-crud",
"author": "Jiri Chara <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm run build:commonjs",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"clean": "rimraf lib coverage esdoc",
"doc": "mkdirp esdoc && esdoc -c esdoc.json",
"lint": "eslint src test examples",
"report": "npm run test && nyc report --reporter=lcov && codecov",
"test:unit": "nyc ava",
"test:e2e": "node test/e2e/runner.js",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"prepublish": "npm run clean && npm run report && npm run build && npm run doc"
},
"files": [
"src",
"lib"
],
"devDependencies": {
"ava": "^0.24.0",
"axios": "^0.19.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bavaria-ipsum": "^1.0.3",
"body-parser": "^1.18.2",
"chromedriver": "^76.0.0",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"cross-spawn": "^6.0.3",
"esdoc": "^1.0.4",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-html": "^4.0.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"express": "^4.16.2",
"growl": "^1.10.3",
"mkdirp": "^0.5.1",
"nightwatch": "^1.2.1",
"nyc": "^14.1.1",
"phantomjs-prebuilt": "^2.1.16",
"rimraf": "^2.6.2",
"sinon": "^4.2.1",
"vue": "^2.5.13",
"vue-loader": "^13.7.0",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.21.0"
},
"peerDependencies": {
"axios": "^0.17",
"vue": "^2.5"
},
"ava": {
"files": [
"test/unit/**/*.spec.js"
],
"source": [
"src/**/*.js"
],
"concurrency": 5,
"failFast": true,
"tap": false,
"powerAssert": false,
"babel": "inherit",
"require": [
"babel-register"
]
},
"nyc": {
"include": [
"src/**/*.js"
]
}
}