-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.65 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
{
"name": "@urbn/vuex-helpers",
"version": "0.2.0",
"description": "A collection of vuex-helper methods",
"author": "mbrophy@urbn.com",
"license": "MIT",
"main": "dist/vuex-helpers.cjs.js",
"module": "src/vuex-helpers.js",
"browser": "dist/vuex-helpers.umd.min.js",
"files": [
"dist",
"src",
"LICENSE.md",
"package.json",
"package-lock.json",
"README.md"
],
"sideEffects": false,
"homepage": "https://github.com/brophdawg11/vuex-helpers#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/brophdawg11/vuex-helpers.git"
},
"bugs": {
"url": "https://github.com/brophdawg11/vuex-helpers/issues"
},
"keywords": [
"js",
"vue",
"vuex"
],
"scripts": {
"build": "rollup -c",
"clean": "rm -rf dist/",
"lint": "eslint .",
"prepublishOnly": "npm run validate && npm run build",
"test": "jest",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --collectCoverage false",
"test:watch": "jest --watch",
"validate": "npm run lint && npm run test"
},
"devDependencies": {
"@babel/preset-env": "7.8.4",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.1",
"@vue/test-utils": "1.0.0-beta.31",
"babel-jest": "25.1.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.7.0",
"husky": "4.2.1",
"jest": "25.1.0",
"rollup": "1.31.0",
"rollup-plugin-terser": "5.2.0",
"vue": "2.6.11",
"vue-template-compiler": "2.6.11",
"vuex": "3.1.2"
},
"peerDependencies": {
"vuex": "3.x"
}
}