UNPKG

1.33 kBJSONView Raw
1{
2 "version": "3.0.0",
3 "name": "gcc-min",
4 "description": "Just write scripts for Node.js environment, then build to use in the browsers",
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 "shift-codegen": "5.x.x",
31 "shift-parser": "5.x.x"
32 },
33 "devDependencies": {
34 "coveralls": "latest",
35 "eslint": "latest",
36 "eslint-config-ggc": "latest",
37 "nyc": "latest",
38 "snyk": "latest",
39 "tap-spec": "latest",
40 "tape": "latest"
41 },
42 "keywords": [
43 "compile",
44 "minify",
45 "es6",
46 "util"
47 ],
48 "license": "MIT",
49 "gccmin": {
50 "source": "./test/data/sample-math.js",
51 "target": "./test/data/output",
52 "filename": "sample",
53 "globalVar": "sampleMath"
54 }
55}