-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.43 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
{
"name": "babel-minify",
"description": "Attempt at writing minify story for ES2015+",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "npm run clean && gulp build",
"clean": "gulp clean",
"flow": "flow check",
"lint": "npm run lint-src && npm run lint-test && npm run lint-others",
"lint-src": "eslint -c .eslintrc packages/*/src packages/*/*.js",
"lint-test": "eslint -c utils/test.eslintrc packages/*/test --ignore-pattern '**/packages/*/test/resources/**'",
"lint-others": "eslint -c .eslintrc utils/ *.js",
"gh-pages": "gulp gh-pages",
"watch": "npm run clean && gulp watch",
"test": "mocha --opts utils/mocha.opts --grep ${TEST_GREP-babel}"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-node4": "^2.1.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"eslint": "^3.0.0",
"expect": "^1.20.2",
"flow-bin": "0.28.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-copy": "0.0.2",
"gulp-newer": "^1.2.0",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.8",
"lerna": "2.0.0-beta.23",
"mocha": "^3.0.0",
"rimraf": "^2.5.2",
"through2": "^2.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}