-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
63 lines (63 loc) · 2.18 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,
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/percy/cli"
},
"scripts": {
"build_cjs": "BABEL_ENV=dev babel packages -d build",
"build": "lerna run build --stream",
"build:watch": "lerna run build --parallel -- --watch",
"build:pack": "mkdir -p ./packs && lerna exec npm pack && mv ./packages/*/*.tgz ./packs",
"bump-version": "lerna version --exact --no-git-tag-version --no-push",
"chromium-revision": "./scripts/chromium-revision.js",
"clean": "git clean -Xdf -e !node_modules -e !**/node_modules/**",
"lint": "eslint --ignore-path .gitignore .",
"readme": "lerna run --parallel readme",
"postinstall": "lerna run --stream postinstall",
"test": "lerna run --stream --concurrency=1 test",
"test:coverage": "lerna run --stream --concurrency=1 --no-bail test:coverage",
"test:types": "lerna run --parallel test:types",
"global:link": "lerna exec -- yarn link",
"global:unlink": "lerna exec -- yarn unlink"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.17.7",
"babel-plugin-transform-import-meta": "^2.2.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-module-resolver": "^5.0.2",
"cross-env": "^7.0.2",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"gaze": "^1.1.3",
"jasmine": "^4.0.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^5.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^7.0.5",
"lerna": "^6.0.1",
"memfs": "^3.4.0",
"nyc": "^15.1.0",
"rollup": "^2.53.2",
"tsd": "^0.31.2"
}
}