-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 917 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
{
"name": "typescript-lib-starter",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "yarn build --watch --preserveWatchOutput",
"lint": "eslint src --ext js,ts",
"test": "jest",
"api-report": "api-extractor run",
"api-docs": "api-documenter markdown -i temp -o docs",
"build-with-docs": "yarn build && yarn api-report && yarn api-docs"
},
"license": "MIT",
"volta": {
"node": "12.19.0",
"yarn": "1.22.10"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@microsoft/api-documenter": "^7.9.10",
"@microsoft/api-extractor": "^7.10.4",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"jest": "^26.5.3",
"typescript": "^4.0.3"
}
}