-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 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
{
"name": "fuzzing",
"version": "0.12.21",
"description": "Tool set for fuzz testing 🐰",
"repository": "https://github.com/palekh/fuzzing.git",
"author": "Igor Golopolosov<[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev:lint": "tslint -p . -c \"./tslint.json\" \"./src/**/*.ts\"",
"ci:build": "tsc --noEmit",
"ci:lint": "npm run dev:lint",
"ci:test": "jest",
"ci:test:update": "jest --updateSnapshot",
"ci:coverage": "jest --coverage",
"test": "npm run ci:build && npm run ci:lint && npm run ci:test",
"precommit": "npm test",
"prepublishOnly": "tsc -d -p \"./tsconfig.build.json\"",
"prepush": "npm test",
"start": "tsc --watch --noEmit"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "14.14.28",
"jest": "26.6.3",
"ts-jest": "26.5.1",
"tslint": "5.20.1",
"typescript": "4.1.5"
},
"jest": {
"coverageReporters": [
"html"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}