forked from babel/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"private": true,
"license": "MIT",
"author": "amasad",
"scripts": {
"bootstrap": "lerna bootstrap",
"changelog": "lerna-changelog",
"clean": "lerna clean",
"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",
"updated": "lerna updated",
"lint": "eslint packages/*/src packages/*/__tests__ scripts/*.js",
"fix": "eslint packages/*/src packages/*/__tests__ scripts/*.js --fix",
"test": "jest",
"build": "gulp build",
"watch": "gulp watch",
"ci": "npm run lint && npm run bootstrap && jest"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testEnvironment": "node",
"testPathDirs": [
"packages"
],
"transformIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-es2015-block-scoping": "^6.22.0",
"babel-preset-env": "^1.1.4",
"babel-traverse": "^6.22.1",
"bytes": "^2.1.0",
"chalk": "^1.1.3",
"cli-table": "^0.3.1",
"closure-compiler": "^0.2.12",
"commander": "^2.9.0",
"eslint": "^3.14.1",
"eslint-config-babel": "^5.0.0",
"eslint-plugin-flowtype": "^2.29.2",
"google-closure-compiler-js": "^20170124.0.0",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-newer": "^1.1.0",
"gulp-util": "^3.0.8",
"jest-cli": "^18.0.0",
"lerna": "2.0.0-beta.37",
"lerna-changelog": "^0.3.0",
"through2": "^2.0.1",
"uglify-js": "^2.7.3"
}
}