-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "tsc-checkjs",
"version": "2.0.0",
"description": "Javascript typechecker PoC",
"main": "index.js",
"scripts": {
"typecheck": "npx tsc -p jsconfig.json",
"typecheck-strict": "npx tsc -p jsconfig.json --noImplicitAny",
"tsc-checkjs": "bin/run.js index.js tests/*.js bin/*.js",
"tsc-checkjs-strict": "bin/run.js --noImplicitAny index.js tests/*.js bin/*.js",
"standard": "standard *.js tests/*.js bin/*.js",
"eslint": "eslint *.js tests/*.js bin/*.js",
"lint": "npm run standard && npm run eslint",
"test": "tap --100 tests/*.js"
},
"author": "Janne Kujanpää <jikuja@iki.fi>",
"license": "MIT",
"dependencies": {
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/node": "^14.0.26",
"cross-spawn": "^7.0.3",
"eslint": "^7.5.0",
"standard": "^16.0.3",
"tap": "^14.10.8"
},
"bin": {
"tsc-checkjs": "bin/run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jikuja/tsc-checkjs.git"
},
"homepage": "https://github.com/jikuja/tsc-checkjs#readme",
"engines": {
"node": ">=10"
}
}