forked from babel/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.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
{
"private": true,
"license": "MIT",
"author": "amasad",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "gulp build",
"changelog": "lerna-changelog",
"clean": "rimraf packages/*/lib utils/*/lib",
"coverage": "yarn test --coverage",
"coverage-ci": "codecov -f coverage/coverage-final.json",
"fix": "eslint --fix .",
"lint": "eslint .",
"publish": "git pull origin master --rebase && npm run build && npm test && lerna publish",
"publish-master": "lerna publish -c minor --npm-client npm --yes -m 'chore(canary): publish %s'",
"test": "jest",
"test-ci": "npm run bootstrap && npm run build && npm run coverage",
"updated": "lerna updated",
"watch": "gulp watch"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/plugin-transform-block-scoping": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"butternut": "^0.4.6",
"bytes": "^3.0.0",
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"closure-compiler": "^0.2.12",
"codecov": "^3.1.0",
"commander": "^2.18.0",
"eslint": "^5.6.0",
"eslint-plugin-prettier": "^2.6.2",
"fancy-log": "^1.3.2",
"fs-readdir-recursive": "^1.1.0",
"google-closure-compiler-js": "^20180610.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^8.0.0",
"gulp-newer": "^1.4.0",
"jest-cli": "^23.6.0",
"lerna": "^3.4.0",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.3.0",
"markdown-table": "^1.1.2",
"minimist": "^1.2.0",
"prettier": "^1.14.3",
"request": "^2.88.0",
"rimraf": "^2.6.2",
"terser": "^3.8.2",
"through2": "^2.0.3",
"uglify-js": "^3.4.9",
"util.promisify": "^1.0.0"
},
"engines": {
"node": ">=6",
"yarn": ">=1"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"roots": [
"packages",
"utils"
],
"coverageDirectory": "./coverage/",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"./scripts/test-files.sh",
"git add"
]
},
"workspaces": [
"packages/*",
"utils/*"
]
}