-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "ts-nocheck",
"version": "1.0.6",
"description": "Painlessly add `@ts-nocheck` to the files you need it in.",
"main": "dist/index.min.js",
"types": "dist/types.d.ts",
"bin": {
"ts-nocheck": "dist/index.min.js"
},
"scripts": {
"lint": "prettier --check ./src",
"test": "yarn lint && jest --coverage=true",
"minimize": "uglifyjs ./dist/cliParser.js ./dist/fileHandler.js ./dist/index.js -o ./dist/index.min.js",
"clean": "rm ./dist/cliParser.js && rm ./dist/fileHandler.js && rm ./dist/index.js",
"prepublish": "node ./prepublish.js",
"build": "tsc && yarn minimize && yarn clean && yarn prepublish",
"build:run": "tsc && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukehatcher/ts-nocheck.git"
},
"keywords": [
"TypeScript",
"JavaScript",
"migration",
"ts",
"js",
"tsx",
"jsx",
"@ts-nocheck"
],
"author": "Luke Hatcher",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukehatcher/ts-nocheck/issues"
},
"homepage": "https://github.com/lukehatcher/ts-nocheck#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.11.11",
"jest": "^27.4.5",
"mock-fs": "^5.1.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.5.2",
"uglify-js": "^3.14.5"
}
}