-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.01 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@genesiscommunitysuccess/custom-elements",
"version": "2.0.1",
"license": "MIT",
"private": true,
"description": "TypeScript plugin to enable Intellisense in custom element tagged templates",
"repository": {
"type": "git",
"url": "git+https://github.com/genesiscommunitysuccess/custom-elements-lsp.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/genesiscommunitysuccess/custom-elements-lsp",
"bugs": {
"url": "https://github.com/genesiscommunitysuccess/custom-elements-lsp/issues"
},
"scripts": {
"bootstrap": "npm run bootstrap:husky && npm i && npx lerna run bootstrap:module",
"bootstrap:ci": "npm run bootstrap:husky && npm ci && npx lerna run bootstrap:module",
"bootstrap:husky": "npx --yes husky install",
"clean": "lerna run clean:dist && npm run clean:module",
"lsp:analyze:all": "lerna run lsp:analyze",
"clean:dist": "exit 0 # Not required",
"clean:module": "rimraf -g **/node_modules",
"commitlint": "node ./scripts/commitlint.js",
"copy-manifest": "cp ./example/ce.json ./src/jest/ce-test.json",
"lint:eslint": "eslint",
"lint:eslint:all": "cross-env TIMING=1 node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js \"./**/*.{ts,js}\"",
"lint:eslint:all:fix": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js \"./**/*.{ts,js}\" --fix",
"publish:from-package": "lerna publish from-package --yes --ignore-scripts",
"release": "semantic-release",
"test": "npm run test:unit",
"test:unit": "lerna run test:unit"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"commitlint-config-lerna-scopes": "^18.1.0",
"@commitlint/format": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cross-env": "^7.0.3",
"eslint": "8.22.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-ts-important-stuff": "^1.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lerna": "7.2.0",
"lint-staged": "^13.2.2",
"rimraf": "5.0.5",
"semantic-release": "21.0.7",
"semantic-release-replace-plugin": "^1.2.7",
"typescript": "4.9.5"
},
"workspaces": [
"packages/core/*",
"packages/showcase/*"
],
"directories": {
"doc": "docs"
},
"author": ""
}