-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.1 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@incognitus/vuex-test-utils",
"version": "2.0.3",
"description": "Testing utilities for Vuex",
"repository": {
"type": "git",
"url": "git+https://github.com/Incognitus-Io/vuex-test-utils.git"
},
"bugs": {
"url": "https://github.com/Incognitus-Io/vuex-test-utils/issues"
},
"homepage": "https://github.com/Incognitus-Io/vuex-test-utils",
"author": "James Stumme",
"license": "MIT",
"keywords": [
"vue",
"vuex",
"test-utils"
],
"main": "dist/cjs/index.js",
"module": "dist/ems/index.js",
"types": "types/index.d.ts",
"scripts": {
"pretest": "yarn build",
"test:ci": "jest",
"test": "yarn test:ci --watch",
"coverage": "yarn test:ci --coverage",
"coverage:coveralls": "coveralls < ./coverage/lcov.info",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prebuild": "rimraf dist .rpt2_cache Release",
"build": "rollup -c build/rollup.config.js",
"postbuild": "mkdirp Release/types && copyfiles types/**/* Release/types/ -u 1 && copyfiles dist/**/* Release/ && copyfiles package.json Release/ && copyfiles *.md Release/"
},
"dependencies": {
"deep-equal": "^2.0.3",
"expect": "^26.4.0",
"jest-get-type": "^26.3.0",
"jest-matcher-utils": "^26.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.10",
"copyfiles": "^2.4.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.4.0",
"mkdirp": "^0.5.1",
"nyc": "^14.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.29.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.27.3",
"rollup-plugin-uglify": "^6.0.4",
"ts-nameof": "3.2.0",
"ts-node": "^9.0.0",
"ts-optchain": "^0.1.8",
"tslint": "^6.1.3",
"ttypescript": "^1.5.12",
"typescript": "^4.0.3",
"vuex": "^3.1.1"
},
"peerDependencies": {
"vuex": ">=3.0.0"
},
"nyc": {
"extension": [
"ts"
],
"reporter": [
"lcov",
"text-summary"
]
}
}