forked from salesforce/lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "lwc",
"private": true,
"description": "Lightning Web Components",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git"
},
"scripts": {
"prepare": "yarn build",
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"lint": "eslint packages/ scripts/ --ext=js,ts --rulesdir=./scripts/eslint/rules",
"format": "prettier --write '{packages,scripts}/**/*.{js,ts,json,md}'",
"build": "lerna run build --ignore perf-benchmarks --ignore integration-tests",
"test": "jest --config ./scripts/jest/root.config.js",
"test:debug": "node --inspect node_modules/.bin/jest --config ./scripts/jest/root.config.js --runInBand --watch",
"test:ci": "yarn test --no-cache --coverage --runInBand",
"test:integration": "lerna exec --scope integration-tests -- yarn sauce",
"test:performance": "lerna exec --scope perf-benchmarks -- best --runner remote",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release:ci:npm": "./scripts/release_npm.sh",
"release:ci:changelog": "./scripts/release_changelog.sh",
"release:ci:dist-tags": "./scripts/release_dist-tags.sh"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/acorn": "^4.0.5",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"aws-sdk": "^2.378.0",
"babel-plugin-tester": "^6.4.0",
"commitizen": "^3.1.1",
"concurrently": "^4.1.0",
"conventional-changelog-cli": "^2.0.21",
"cz-conventional-changelog": "^2.1.0",
"es5-proxy-compat": "^0.21.7",
"eslint": "^6.3.0",
"execa": "^1.0.0",
"express": "^4.17.1",
"glob": "^7.1.2",
"husky": "^3.0.0",
"is-ci": "^2.0.0",
"isbinaryfile": "^3.0.3",
"jest": "^24.9.0",
"jest-environment-jsdom-fifteen": "^1.0.0",
"lerna": "^3.15.0",
"lint-staged": "^8.2.0",
"mime-types": "^2.1.21",
"prettier": "1.16.4",
"rollup": "^1.7.4",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-compat": "^0.21.7",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.0",
"semver": "^6.1.1",
"tslib": "^1.10.0",
"typescript": "~3.6.2",
"worker-farm": "~1.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --rulesdir=./scripts/eslint/rules"
],
"{packages,scripts}/**/*.{js,ts,json,md}": [
"prettier --write",
"git add"
]
},
"workspaces": [
"packages/@lwc/*",
"packages/lwc",
"packages/integration-karma",
"packages/integration-tests",
"packages/perf-benchmarks"
],
"engines": {
"node": ">=10.16.3 <10.17.0",
"yarn": ">=1.17.3 <1.18.0"
},
"volta": {
"node": "10.16.3",
"yarn": "1.17.3"
},
"resolutions": {
"lodash": "^4.17.14",
"mixin-deep": "^1.3.2",
"set-value": "^2.0.1"
}
}