mirror of
https://github.com/mdgriffith/elm-optimize-level-2.git
synced 2024-11-29 12:46:32 +03:00
69 lines
1.6 KiB
JSON
69 lines
1.6 KiB
JSON
{
|
|
"name": "elm-optimize-level-2",
|
|
"description": "A second level of optimization for the Javascript that the Elm Compiler produces.",
|
|
"version": "0.1.5",
|
|
"license": "BSD-3-Clause",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"bin"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mdgriffith/elm-optimize-level-2.git"
|
|
},
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"bin": {
|
|
"elm-optimize-level-2": "./bin/elm-optimize-level-2.js"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"prepare": "tsc -p tsconfig.json",
|
|
"run": "ts-node -T src/index.ts testcases/core/Main.elm",
|
|
"help": "ts-node -T src/index.ts --help",
|
|
"report": "ts-node -T src/benchmark/run.ts"
|
|
},
|
|
"peerDependencies": {},
|
|
"husky": {
|
|
"hooks": {}
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5"
|
|
},
|
|
"author": "",
|
|
"module": "dist/lib.esm.js",
|
|
"devDependencies": {
|
|
"@gfx/zopfli": "^1.0.15",
|
|
"@types/commander": "^2.12.2",
|
|
"chromedriver": "^86.0.0",
|
|
"geckodriver": "^1.20.0",
|
|
"husky": "^4.2.5",
|
|
"jest": "26.4.2",
|
|
"jest-watch-typeahead": "^0.6.0",
|
|
"prepack": "^0.2.54",
|
|
"selenium-webdriver": "^4.0.0-alpha.7",
|
|
"terser": "^5.1.0",
|
|
"tree-sitter": "^0.16.1",
|
|
"tree-sitter-elm": "^2.7.9",
|
|
"ts-jest": "^26.2.0",
|
|
"ts-node": "^8.10.2",
|
|
"tslib": "^2.0.0",
|
|
"uglify-js": "^3.10.0",
|
|
"v8-natives": "^1.2.0"
|
|
},
|
|
"dependencies": {
|
|
"typescript": "^3.9.7",
|
|
"commander": "^6.0.0",
|
|
"chalk": "^4.1.0",
|
|
"ts-union": "^2.2.1",
|
|
"node-elm-compiler": "^5.0.4"
|
|
}
|
|
}
|