-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.08 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-composer",
"version": "1.2.0",
"description": "Opinionated Composition API implementation for Vuex",
"keywords": [
"vuex",
"vue",
"composition",
"api",
"functional"
],
"homepage": "https://github.com/stevethedev/vuex-composition#readme",
"bugs": {
"url": "https://github/com/stevethedev/vuex-composition/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:amd && npm run build:es6 && npm run build:sys && npm run build:umd",
"build:esm": "tsc --module esnext --outdir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:amd": "tsc --module amd --outdir dist/amd",
"build:es6": "tsc --module es6 --outdir dist/es6",
"build:sys": "tsc --module system --outdir dist/sys",
"build:umd": "tsc --module umd --outdir dist/umd",
"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",
"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": {},
"peerDependencies": {
"vuex": "^4.0.0-rc.2"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.19.15",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"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",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"vuex": "^4.0.0-rc.2",
"vuex-functional": "^1.1.0"
}
}