generated from un-ts/lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.77 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "typemod",
"version": "0.0.3",
"type": "commonjs",
"description": "Codemod scripts to transform ts codes into latest features.",
"repository": "git+https://github.com/rx-ts/typemod.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=v12.22.11"
},
"main": "./lib.index.js",
"module": "./lib/index.es2015.mjs",
"exports": {
".": {
"import": "./lib/index.es2015.mjs",
"require": "./lib.index.js"
},
"./*": "./lib/*.js"
},
"types": "lib",
"files": [
"lib",
"!*.tsbuildinfo"
],
"keywords": [
"codemod-ts",
"js-codemod",
"jscodeshift",
"refactor",
"ts-codemod",
"tsmod",
"typemod"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f es2015",
"build:ts": "tsc -p src",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"prerelease": "pnpm build",
"release": "changeset publish",
"test": "pnpm jest",
"typecov": "type-coverage"
},
"dependencies": {
"eslint-import-resolver-typescript": "^2.5.0",
"jscodeshift": "^0.13.1"
},
"devDependencies": {
"@1stg/lib-config": "^4.1.2",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.17.0",
"@types/jest": "^27.5.2",
"@types/jscodeshift": "^0.11.3",
"@types/node": "^16.10.3",
"ts-jest": "^27.0.7",
"type-coverage": "^2.18.2",
"typescript": "^4.5.4"
},
"resolutions": {
"prettier": "^2.4.1"
},
"typeCoverage": {
"atLeast": 99.68,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}