-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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-snapshot-test",
"version": "0.2.0",
"description": "Snapshot testing library for Vuex with Jest",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shisama/vuex-snapshot-test.git"
},
"keywords": [
"vue",
"vuex",
"test",
"snapshot",
"jest",
"actions",
"mutations",
"store"
],
"author": "Masashi Hirano (shisama)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shisama/vuex-snapshot-test/issues"
},
"homepage": "https://github.com/shisama/vuex-snapshot-test#readme",
"devDependencies": {
"@types/jest": "24.0.25",
"@types/lodash.clonedeep": "4.5.6",
"@typescript-eslint/eslint-plugin": "2.14.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-config-standard": "13.0.1",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.3.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"jest": "24.9.0",
"prettier": "2.0.5",
"ts-jest": "24.2.0",
"typescript": "3.7.4",
"vue": "2.6.11",
"vuex": "3.1.2"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"snapshot-diff": "^0.6.0"
}
}