-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "jest-mock-proxy",
"version": "3.1.2",
"description": "Mock classes and objects with the power of proxies!",
"license": "MIT",
"repository": "sebald/jest-mock-proxy",
"keywords": [
"jest",
"proxy",
"test",
"testing",
"mock",
"fixture"
],
"author": "Sebastian Sebald <[email protected]>",
"engines": {
"node": ">=8"
},
"main": "lib/index.js",
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {},
"peerDependencies": {
"jest": ">=24"
},
"devDependencies": {
"@types/jest": "24.0.11",
"@typescript-eslint/eslint-plugin": "1.5.0",
"conventional-changelog-cli": "2.0.12",
"conventional-changelog-emojis": "3.0.1",
"eslint": "5.15.3",
"eslint-config-prettier": "4.1.0",
"eslint-config-xo": "0.26.0",
"eslint-config-xo-typescript": "0.9.0",
"eslint-plugin-jest": "22.4.1",
"husky": "1.3.1",
"jest": "24.5.0",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"ts-jest": "24.0.0",
"typescript": "3.3.4000"
},
"scripts": {
"build": "tsc",
"test": "jest --config jest.config.js",
"clean": "rm -rf lib coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"ci": "jest --config jest.config.js --coverage",
"version": "conventional-changelog -p emojis -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
}
}