This repository has been archived by the owner on Oct 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"homepage": "https://github.com/liferay/liferay-js-toolkit#readme",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/liferay/liferay-js-toolkit.git"
},
"bugs": {
"url": "https://github.com/liferay/liferay-js-toolkit/issues"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"check-deps": "node scripts/check-deps.js",
"ci": "yarn check-deps && yarn format:check && yarn lint && yarn build && yarn test",
"format": "prettier --write \"**/*.md\" \".*.js\" \"packages/*/src/**/*.js\"",
"format:check": "prettier --list-different \"**/*.md\" \".*.js\" \"packages/*/src/**/*.js\"",
"level-deps": "node scripts/level-deps.js",
"lint": "eslint \"packages/*/src/*.js\" \"packages/*/src/**/*.js\"",
"lint:fix": "eslint --fix \"packages/*/src/*.js\" \"packages/*/src/**/*.js\"",
"qa": "yarn && yarn build && yarn qa:only",
"qa:only": "node scripts/qa/index.js",
"release": "scripts/publish.sh --force-publish='*' --exact",
"release-canary": "scripts/publish.sh --force-publish='*' --exact -c",
"test": "jest --runInBand",
"watch": "node scripts/watch"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"copyfiles": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-liferay": "^14.0.0",
"fs-extra": "^8.1.0",
"globby": "^10.0.1",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"yo": "^3.1.0"
},
"dependencies": {
"xml-js": "^1.6.8"
}
}