-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 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
41
{
"name": "vdes-template",
"private": true,
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/vdesjs/vdes-template"
},
"workspaces": [
"packages/*"
],
"homepage": "https://github.com/vdesjs/vdes-template",
"scripts": {
"prepare": "husky install",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint -c .eslintrc.js packages/*/src/**/*.ts",
"lint:fix": "eslint -c .eslintrc.js packages/*/src/**/*.ts --fix",
"build": "lerna run --stream --sort build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:vscode": "conventional-changelog ./packages/vscode-plugin-vdes-template --commit-path -p angular -i ./packages/vscode-plugin-vdes-template/CHANGELOG.md -s -r 0",
"ghpage": "node ./scripts/publishDocs"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {}
}