-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 2.2 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
{
"private": true,
"scripts": {
"checkFormat": "npm run prettier -- --list-different",
"compile": "lerna run compile",
"clearCoverage": "rm -rf coverage",
"clear": "lerna clean",
"format": "npm run prettier -- --write",
"lerna": "lerna bootstrap -- --no-optional --hoist && npm install --no-optional",
"lerna:ci": "lerna bootstrap -- --no-optional --hoist --ci",
"lint": "eslint 'packages/*/{src,test,__tests__}/**/*.js'",
"ls": "lerna ls",
"precommit": "lint-staged",
"prettier": "prettier-eslint 'packages/*/{src,test,__tests__}/**/*.js'",
"saucelabs": "karma start karma-saucelabs.conf.js",
"test": "karma start",
"test:coverage": "npm run clearCoverage && karma start karma-coverage.conf.js",
"test:coverage:open": "npm run test:coverage && serve coverage/lcov/lcov-report/",
"test:jest": "lerna run test:jest --concurrency 1 --stream",
"test:mobile": "concurrently \"node test-mobile.js\" \"npm run test:watch\"",
"test:saucelabs": "npm run saucelabs -- 0 && npm run saucelabs -- 1 && npm run saucelabs -- 2 && npm run saucelabs -- 3",
"test:watch": "karma start --single-run=false --auto-watch=true"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-node-env-inline": "^0.4.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"eslint": "^4.17.0",
"eslint-config-liferay": "^2.0.18",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"istanbul": "^0.4.5",
"karma": "^1.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sauce-launcher": "~1.1.0",
"karma-sharding": "^4.4.0",
"karma-sinon": "^1.0.5",
"karma-webpack": "^3.0.0",
"lerna": "^3.4.3",
"lint-staged": "^7.1.0",
"mocha": "^4.1.0",
"ngrok": "^3.0.1",
"prettier-eslint-cli": "^4.7.0",
"puppeteer": "^1.6.2",
"serve": "^6.5.6",
"sinon": "^4.5.0",
"sinon-chai": "^3.1.0",
"webpack": "^4.8.0"
},
"lint-staged": {
"*.js": [
"npm run format",
"git add"
]
},
"name": "metal-plugins"
}