-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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": "jsconfig.json",
"version": "2.3.3",
"description": "Small tool which automatically generates jsconfig.json, used for vscode workspace configuration, with defaults and paths from webpack config.",
"bin": {
"jsconfig.json": "./bin/cli.js"
},
"scripts": {
"prepare": "husky install",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:unit:watch": "npm run test:unit -- --watch --maxWorkers=50%",
"test:e2e": "jest --config=jest.e2e.config.js",
"lint": "eslint -c .eslintrc.js --ignore-path .gitignore \"./**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"dev": "nodemon ./src/cli.js --output ./tmp",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsimck/jsconfig.json.git"
},
"keywords": [
"code",
"vscode",
"visual studio code",
"jsconfig",
"webpack",
"jsconfig.json",
"tsconfig.json"
],
"author": "Jan Šimeček (jansimecek.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsimck/jsconfig.json/issues"
},
"homepage": "https://github.com/jsimck/jsconfig.json#readme",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^17.0.3",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"git-cz": "^4.8.0",
"husky": "^8.0.1",
"jest": "^28.0.3",
"nodemon": "^2.0.14",
"prettier": "^2.4.1"
},
"dependencies": {
"deepmerge": "^4.2.2",
"picocolors": "^1.0.0",
"yargs": "^17.2.1"
}
}