-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "typescript-features-by-version",
"version": "1.0.0",
"description": "features by typescript version releases",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/WhatIfWeDigDeeper/typescript-features-by-version.git"
},
"keywords": [
"typescript"
],
"author": "WhatIfWeDigDeeper",
"license": "MIT",
"bugs": {
"url": "https://github.com/WhatIfWeDigDeeper/typescript-features-by-version/issues"
},
"homepage": "https://github.com/WhatIfWeDigDeeper/typescript-features-by-version#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^12.0.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{ts}": [
"npm run lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "node_modules/.bin/lint-staged"
}
},
"scripts": {
"audit:ci": "npm_config_yes=true npx audit-ci --config .auditconfig.json",
"clean": "rm -rf dist/*",
"compile": "tsc --pretty",
"compile:watch": "tsc --pretty --watch",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"lint:watch": "eslint --watch",
"precommit": "lint-staged",
"prepush": "npm run compile && npm test",
"test": "jest",
"test:watch": "jest --watch"
}
}