forked from babel/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"license": "MIT",
"author": "amasad",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "gulp build",
"changelog": "lerna-changelog",
"clean": "lerna clean",
"coverage": "jest --coverage",
"coverage-ci": "codecov -f coverage/coverage-final.json",
"eslint": "eslint packages/*/src/ packages/*/__tests__/ utils/*.js scripts/*.js",
"eslint-fix": "eslint --fix packages/*/src/ packages/*/__tests__/ utils/*.js scripts/*.js",
"fix": "npm run format && npm run eslint-fix",
"format": "git ls-files | egrep '\\.js$' | xargs prettier --write --print-width 80",
"format-check": "git ls-files | egrep '\\.js$' | xargs prettier -l --print-width 80",
"lint": "npm run format-check && npm run 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",
"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": "^7.2.3",
"babel-jest": "^20.0.3",
"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": "^2.5.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",
"fs-readdir-recursive": "^1.0.0",
"google-closure-compiler-js": "^20170626.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-newer": "^1.3.0",
"gulp-util": "^3.0.8",
"jest-cli": "^20.0.4",
"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/*"
]
}