-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "javascript-wiki",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:myLightLin/javascript-wiki.git",
"author": "lightlin",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint ./src/**/*.js ./test/**/*.test.js --fix && prettier --write ./src/**/*.js",
"test": "jest --coverage"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.7.0",
"babel": "^6.23.0",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.1.3",
"esm": "^3.2.25",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"babel-jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}