-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.54 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
{
"name": "frontend-learning-map",
"version": "1.0.0",
"description": "upupming's front end learning map",
"main": "index.js",
"scripts": {
"check": "npm run test && npm run lint",
"lint": "eslint .",
"dev": "jest --watch",
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc -p .",
"clean": "tsc --build --clean"
},
"devDependencies": {
"@babel/plugin-proposal-class-static-block": "^7.15.4",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upupming/frontend-learning-map.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/upupming/frontend-learning-map/issues"
},
"homepage": "https://github.com/upupming/frontend-learning-map#readme"
}