This repository was archived by the owner on Sep 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.64 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "butternut",
"version": "0.4.6",
"description": "Experimental ES2015-aware minifier",
"main": "dist/butternut.cjs.js",
"module": "dist/butternut.es.js",
"files": [
"bin",
"src",
"dist",
"register.js",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:all": "rollup -c && rollup -c --environment MIN && rollup -c --environment UMD",
"dev": "rollup -w -c --environment UMD",
"bench": "node test/bench",
"prebench": "npm run build",
"test": "mocha test/test.js",
"test:min": "cross-env TEST_MIN=true && mocha test/test.js",
"test:fuzz": "node test/fuzz-test.js",
"pretest": "npm run build",
"pretest:min": "npm run build:all",
"prepublish": "npm run test:min",
"lint": "eslint src",
"precoverage": "export COVERAGE=true && nyc mocha --opts mocha.coverage.opts",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"codecov": "codecov",
"precodecov": "npm run coverage"
},
"bin": {
"squash": "./bin/squash",
"butternut": "./bin/squash"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rich-Harris/butternut.git"
},
"keywords": [
"javascript",
"transpilation",
"compilation",
"esnext",
"es2015",
"es2017",
"es6",
"es7"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rich-Harris/butternut/issues"
},
"homepage": "https://github.com/Rich-Harris/butternut#README",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-preset-babili": "0.0.12",
"benchmark": "^2.1.4",
"buble": "^0.15.2",
"chalk": "^1.1.3",
"codecov": "^2.2.0",
"console-group": "^0.3.3",
"cross-env": "^5.0.0",
"eslint": "^3.19.0",
"eslump": "^1.5.1",
"filesize": "^3.5.9",
"glob": "^7.1.1",
"google-closure-compiler-js": "^20170423.0.0",
"gzip-size": "^3.0.0",
"left-pad": "^1.1.3",
"mocha": "^3.4.1",
"nyc": "^10.3.2",
"pretty-bytes": "^4.0.2",
"pretty-ms": "^2.1.0",
"reify": "^0.11.0",
"right-pad": "^1.0.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-butternut": "^0.1.0",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^3.2.2",
"source-map": "^0.5.6",
"source-map-support": "^0.4.15",
"sourcemap-codec": "^1.3.1",
"uglify-es": "^3.0.9",
"uglify-js": "^3.0.9"
},
"dependencies": {
"acorn": "^5.0.3",
"chalk": "^1.1.3",
"magic-string": "^0.20.0",
"minimist": "^1.2.0",
"sourcemap-codec": "^1.3.1"
}
}