-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 972 Bytes
/
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
{
"name": "ts-probe",
"version": "0.1.1",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"typescript": "^3.8.2"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2"
},
"engines": {
"node": ">=10"
},
"keywords": ["TypeScript", "Compiler API"],
"author": "uneco <[email protected]>",
"license": "MIT",
"description": "Tool to probe type information using TypeScript Compiler API"
}