UNPKG

1.4 kBJSONView Raw
1{
2 "version": "2.0.1",
3 "name": "gcc-min",
4 "description": "Transpile and Minify ECMAScript 6 using Google Closure Compiler",
5 "repository": {
6 "type": "git",
7 "url": "https://github.com/ndaidong/gcc-min"
8 },
9 "author": "@ndaidong",
10 "bin": {
11 "gccmin": "./bin/index"
12 },
13 "main": "./index.js",
14 "engines": {
15 "node": ">= 6.0"
16 },
17 "scripts": {
18 "lint": "eslint ./src ./test",
19 "pretest": "npm run lint && snyk test",
20 "tape": "nyc tape test/start.js | tap-spec",
21 "test": "npm run tape",
22 "posttest": "nyc report --reporter=lcov",
23 "coveralls": "npm test && cat ./coverage/lcov.info | coveralls"
24 },
25 "dependencies": {
26 "babel-core": "6.x.x",
27 "babel-plugin-transform-remove-strict-mode": "0.x.x",
28 "babel-preset-env": "0.x.x",
29 "bellajs": "6.x.x",
30 "minimist": "1.x.x",
31 "promise-wtf": "1.x.x",
32 "shift-codegen": "5.x.x",
33 "shift-parser": "5.x.x"
34 },
35 "devDependencies": {
36 "coveralls": "latest",
37 "eslint": "latest",
38 "eslint-config-ggc": "latest",
39 "nyc": "latest",
40 "snyk": "latest",
41 "tap-spec": "latest",
42 "tape": "latest"
43 },
44 "keywords": [
45 "compile",
46 "minify",
47 "es6",
48 "util"
49 ],
50 "license": "MIT",
51 "maintainers": [
52 "ndaidong <ndaidong@gmail.com>"
53 ],
54 "bugs": {
55 "url": "https://github.com/ndaidong/gcc-min/issues"
56 },
57 "directories": {
58 "test": "test"
59 }
60}