-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
{
"name": "vuex-listener",
"version": "1.2.0",
"description": "A global Vuex listener plugin",
"main": "dist/plugin.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc -p ./tsconfig.build.json",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint:fix": "tslint --fix -c tslint.json -p tsconfig.json"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiyui/vuex-listener.git"
},
"keywords": [
"vue",
"vuex",
"listener"
],
"author": "Dafne Kiyui",
"license": "MIT",
"bugs": {
"url": "https://github.com/kiyui/vuex-listener/issues"
},
"homepage": "https://github.com/kiyui/vuex-listener#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.162",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"lodash": "^4.17.20",
"ts-jest": "^26.4.1",
"tslint": "^5.13.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.0.3"
},
"dependencies": {
"vue": "^2.6.12",
"vuex": "^3.5.1"
}
}