-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "babel-plugin-closure-elimination",
"version": "1.3.2",
"description": "Removes closures from your JavaScript in the name of performance.",
"main": "lib/index.js",
"scripts": {
"build": "babel -d ./lib ./src",
"build-eliminated": "cd src && babel --plugins ../lib -d ../lib ./",
"prepublishOnly": "npm run test",
"pretest": "npm run build && npm run build-eliminated",
"test": "mocha test/index.js",
"watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/codemix/babel-plugin-closure-elimination"
},
"keywords": [
"babel",
"babel-plugin",
"closure-elimination",
"closure",
"optimization"
],
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/babel-plugin-closure-elimination/issues"
},
"homepage": "https://github.com/codemix/babel-plugin-closure-elimination",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-generator": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node5": "^1.2.0",
"babel-regenerator-runtime": "^6.5.0",
"babel-register": "^6.26.0",
"lodash": "^4.17.15",
"mocha": "^4.0.1",
"should": "^13.1.2"
}
}