This repository has been archived by the owner on Aug 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 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
{
"name": "vuex-promise",
"version": "1.0.2",
"description": ":two_hearts: A Promise Plugin for Vuex-FSA (fork of Vuex, with modifications for FSA compliant)",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "node --harmony .tools/build",
"lint": "eslint --max-warnings 10 .",
"lint:fix": "npm run lint -- --fix",
"unit": "karma start ./test/unit/runner.js",
"unit:dev": "karma start ./test/unit/runner.js --watch",
"test": "npm run lint && npm run unit",
"release": "bash .tools/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossjs/vuex-promise.git"
},
"keywords": [
"promise",
"plugin",
"vuex"
],
"author": "crossjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/crossjs/vuex-promise/issues"
},
"homepage": "https://github.com/crossjs/vuex-promise#readme",
"devDependencies": {
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.0.0",
"eslint-config-standard": "^5.3.1",
"eslint-loader": "^1.4.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"karma": "1.0.0",
"karma-coverage": "^1.0.0",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"rollup": "^0.33.0",
"rollup-plugin-babel": "^2.4.0",
"uglify-js": "^2.5.0",
"vue": "^1.0.26",
"vuex": "^1.0.0-rc.2",
"webpack": "^1.13.1",
"yargs": "^4.7.1"
}
}