forked from babel/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 KB
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
{
"license": "MIT",
"author": "amasad",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "gulp build",
"changelog": "lerna-changelog",
"clean": "lerna clean",
"coverage": "jest --coverage --maxWorkers=4",
"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-internal": "git pull origin master --rebase && npm run build && NPM_DIST_TAG=internal ./node_modules/.bin/lerna publish --skip-git",
"test": "jest --maxWorkers=4",
"test-ci": "npm run bootstrap && npm run build && npm run coverage",
"updated": "lerna updated",
"watch": "gulp watch"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-traverse": "^6.25.0",
"butternut": "^0.4.6",
"bytes": "^3.0.0",
"chalk": "^2.0.1",
"cli-table": "^0.3.1",
"closure-compiler": "^0.2.12",
"codecov": "^2.3.0",
"commander": "^2.11.0",
"eslint": "^4.4.0",
"eslint-plugin-prettier": "^2.3.1",
"fs-readdir-recursive": "^1.0.0",
"google-closure-compiler-js": "^20170910.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^7.0.0",
"gulp-newer": "^1.3.0",
"gulp-util": "^3.0.8",
"jest-cli": "^21.1.0",
"lerna": "^2.0.0",
"lerna-changelog": "^0.6.0",
"markdown-table": "^1.1.1",
"prettier": "^1.5.3",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"through2": "^2.0.3",
"uglify-js": "^3.0.27"
},
"private": true,
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/"
],
"roots": [
"packages"
],
"coverageDirectory": "./coverage/"
},
"workspaces": [
"packages/*"
]
}