-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1000 Bytes
/
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
{
"name": "type-safe-jest-spy",
"version": "0.0.6",
"description": "Helps you write faster spies by automatically inferring the real implementation's type signature",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"repository": "https://github.com/dgreene1/typeSafeJestSpy.git",
"author": "Dan Greene",
"license": "GPL-3.0",
"files": ["build/src/**/*"],
"scripts": {
"clean": "rimraf ./build && rimraf .tmp",
"build": "npm run clean && tsc && npm run lint",
"lint": "tslint \"**/*.ts\" --project .",
"test": "jest",
"pre-push": "npm run build && npm run test",
"prepare": "npm run pre-push"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push"
}
},
"devDependencies": {
"@types/jest": "^23.3.10",
"husky": "^1.2.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.2",
"typescript-tslint-plugin": "^0.2.0"
}
}