-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "ts-util-helpers",
"version": "0.0.0-semantically-released",
"description": "TypeScript first utility helpers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"author": "Corbin Crutchley <[email protected]> (https://crutchcorn.dev)",
"license": "MIT",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/crutchcorn/ts-util-helpers"
},
"bugs": {
"url": "https://github.com/crutchcorn/ts-util-helpers/issues"
},
"homepage": "https://github.com/crutchcorn/ts-util-helpers#readme",
"files": [
"dist"
],
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"format": "kcd-scripts format",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:types": "yarn tsd other",
"test:update": "npm test -- --updateSnapshot --coverage",
"typecheck": "kcd-scripts typecheck",
"validate": "kcd-scripts validate"
},
"dependencies": {
"@babel/runtime": "^7.14.6"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"kcd-scripts": "^11.1.0",
"tsd": "^0.19.0",
"typescript": "^4.5.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"overrides": [
{
"files": [
"*.test-d.ts"
],
"parserOptions": {
"project": [
"./tsconfig-tests.json"
]
}
}
]
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}