-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.91 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": "vuex-functional",
"version": "1.1.1",
"description": "Functional-style accessors for the Vuex store",
"keywords": [
"vuex",
"vue",
"composition",
"api",
"functional",
"accessor"
],
"homepage": "https://github.com/stevethedev/vuex-functional#readme",
"bugs": {
"url": "https://github/com/stevethedev/vuex-functional/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"build": "npm run build:es && npm run build:cjs",
"build:es": "tsc --module esnext --outDir dist/es",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"test": "jest --coverage",
"lint": "npm run lint:tsc && npm run lint:eslint",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint -c .eslintrc.js",
"preversion": "npm run lint && npm run test && npm run build",
"prepublish": "npm run lint && npm run test && npm run build"
},
"author": {
"name": "Steven Jimenez",
"email": "[email protected]",
"url": "https://www.stevethedev.com"
},
"license": "MIT",
"dependencies": {
"vue": "^3.0.5",
"vuex": "^4.0.0-rc.2"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-beta.14",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.0.8",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-unicorn": "^27.0.0",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"vue-jest": "^5.0.0-alpha.8",
"vue-shadow-dom": "^2.0.0"
}
}