-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "vue-hagrid",
"version": "0.2.1",
"description": "Declaratively dispatch actions from Vue components",
"main": "dist/vue-hagrid.js",
"unpkg": "dist/vue-hagrid.js",
"scripts": {
"lint": "eslint src test",
"test": "karma start test/karma.conf.js --single-run",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"prepublish": "npm run lint && npm run test && npm run build"
},
"files": [
"dist/vue-hagrid.js"
],
"author": "Brian Schiller",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/bgschiller/vue-hagrid.git"
},
"bugs": {
"url": "https://github.com/bgschiller/vue-hagrid/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.8.4",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^2.0.9",
"mocha": "^5.0.0",
"sinon": "^4.3.0",
"vue": "^2.5.13",
"vue-template-compiler": "^2.x",
"vue-test-utils": "^1.0.0-beta.11",
"vuex": "^3.0.1",
"webpack": "^3.10.0"
},
"peerDependencies": {
"vue": ">=2.x",
"vuex": ">=2.x"
},
"dependencies": {
"eslint-plugin-import": "^2.8.0",
"shallow-equals": "^1.0.0"
}
}