-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "vuex-plus",
"version": "3.0.2",
"description": "Opinionated library that makes Vuex module instances possible",
"main": "dist/vuex+.js",
"scripts": {
"prebuild": "npm run lint",
"build": "rollup -c rollup.config.js",
"postbuild": "echo \"Done!\"",
"lint": "eslint src & eslint loader.js",
"test": "jest --config=.jestrc.json",
"testcov": "jest --coverage --config=.jestrc.json",
"posttestcov": "codecov",
"testdev": "jest --watch --config=.jestrc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/presidenten/vuex-plus.git"
},
"keywords": [
"vuex",
"instances"
],
"author": "Johan Hernefeldt <[email protected]> (https://github.com/presidenten)",
"license": "MIT",
"bugs": {
"url": "https://github.com/presidenten/vuex-plus/issues"
},
"homepage": "https://github.com/presidenten/vuex-plus#readme",
"dependencies": {
"clone": "^2.1.1",
"webpack-context-vuex-hmr": "^2.1.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-cli": "^1.1.1",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.1",
"rollup": "^0.42.0",
"rollup-plugin-buble": "^0.16.0"
}
}