This repository was archived by the owner on Dec 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.62 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.62 KB
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
{
"name": "assert-typescript-errors",
"version": "1.0.0",
"description": "Assert that TypeScript finds an error in your test files.",
"license": "MIT",
"author": "Tiger Oakes <contact@tigeroakes.com> (https://tigeroakes.com)",
"repository": "NotWoods/assert-typescript-errors",
"bugs": "https://github.com/NotWoods/assert-typescript-errors/issues",
"homepage": "https://github.com/NotWoods/assert-typescript-errors#readme",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"bin": {
"assert-ts-errors": "./assert-ts-errors"
},
"scripts": {
"test": "jest",
"build": "rollup -c && tsc --emitDeclarationOnly",
"lint": "tsc --noEmit && prettier --parser typescript \"src/**/*.{ts,tsx}\" --write",
"lint:check": "tsc --noEmit && prettier --parser typescript \"src/**/*.{ts,tsx}\" --check"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/node": "^11.9.4",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"rollup": "^1.2.2",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.0",
"ts-jest": "^24.0.0",
"tslib": "^1.9.3",
"typescript": "^3.3.3"
},
"engines": {
"node": ">=10.14.2"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always"
}
}