forked from liferay/liferay-js-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"homepage": "https://github.com/liferay/liferay-npm-build-tools#readme",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/liferay/liferay-npm-build-tools.git"
},
"bugs": {
"url": "https://github.com/liferay/liferay-npm-build-tools/issues"
},
"scripts": {
"build": "lerna run build",
"ci": "prettier-eslint --list-different && npm run lint && npm run test",
"format": "prettier-eslint --write packages/*/src/*.js packages/*/src/**/*.js",
"lerna": "npm install && lerna bootstrap",
"lint": "eslint packages/*/src/*.js packages/*/src/**/*.js",
"release": "lerna publish --force-publish='*' --exact",
"release-canary": "lerna publish --force-publish='*' --exact -c",
"test": "jest --runInBand"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-liferay": "^2.0.0",
"jest": "^20.0.4",
"lerna": "^2.0.0-rc.5",
"prettier-eslint-cli": "^4.4.0"
},
"jest": {
"modulePathIgnorePatterns": [
"lib/.*",
"generators/.*"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__fixtures__/"
]
}
}