-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.29 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.29 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
{
"name": "typescript-npm-package-tpl",
"version": "1.0.0",
"description": "A set of files to get moving for a typescript npm package, remove all not required",
"licence": "MIT",
"main": "./build/index.js",
"scripts": {
"install:githooks": "cp ./githooks/* .git/hooks",
"test": "npm run lint && npm run test:unit",
"test:unit": "npm run build && jest",
"test:unit:single": "jest --collect-coverage false",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"build:tocs": "npx doctoc .",
"build": "rm -fR ./build && ttsc -p . --declaration --declarationDir build",
"build:watch": "ttsc --watch -p .",
"start": "node cli.js",
"prepublishOnly": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "??"
},
"keywords": [
"TypeScript"
],
"dependencies": {
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.18.10",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^8.8.0",
"eslint-plugin-deprecate": "^0.7.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ttypescript": "^1.5.13",
"typescript": "^4.3.5"
}
}