-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
57
{
"name": "typescript-playground",
"version": "2.0.2",
"description": "TypeScript playground. Learning TypeScript",
"license": "Apache-2.0",
"keywords": [
"typescript"
],
"author": {
"name": "Johnny Miller",
"email": "johnnysviva@outlook.com",
"url": "https://github.com/johnnymillergh"
},
"bugs": {
"url": "https://github.com/johnnymillergh/typescript-playground/issues/new",
"email": "johnnysviva@outlook.com"
},
"repository": {
"url": "https://github.com/johnnymillergh/typescript-playground",
"type": "git"
},
"private": true,
"scripts": {
"test": "jest",
"lint": "eslint --ext .ts src tests",
"lint:fix": "eslint --fix --debug --ext .ts src tests",
"travis:go": "npm run lint && npm run test"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
},
"engines": {
"node": ">=12.18.3",
"npm": ">=6.14.6"
},
"lint-staged": {
"*.{ts,tsx}": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}