-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.02 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
{
"name": "vuex-actions",
"version": "1.1.1",
"description": "Action utilities for Vuex, supports promise-based async actions.",
"main": "dist/vuex-actions.js",
"scripts": {
"build": "npm run lint && npm run build-umd",
"build-umd": "node build/build.js",
"pretest": "multidep test/multidep.json",
"test": "cross-env NODE_ENV=test nyc mocha test/main.js",
"test:debug": "mocha --compilers js:babel-register --debug-brk test/main.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint --format node_modules/eslint-friendly-formatter src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"release": "bash build/release.sh"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/weinot/vuex-actions.git"
},
"keywords": [
"vue",
"vuex",
"async",
"action",
"actions",
"vuex actions"
],
"author": "vnot",
"license": "MIT",
"bugs": {
"url": "https://github.com/weinot/vuex-actions/issues"
},
"homepage": "https://github.com/weinot/vuex-actions#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-istanbul": "^1.0.3",
"babel-preset-es2015": "6.13.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"cross-env": "^2.0.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",
"mocha": "^3.0.1",
"multidep": "^2.0.1",
"nyc": "^7.1.0",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.6.1",
"uglify-js": "^2.7.0",
"vue": "^1.0.26",
"vuex": "^1.0.0-rc.2"
}
}