forked from mdgriffith/elm-optimize-level-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "elm-optimize-level-2",
"description": "A second level of optimization for the Javascript that the Elm Compiler produces.",
"version": "0.2.3",
"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",
"help": "ts-node -T src/index.ts --help",
"prepare": "tsc -p tsconfig.json && npm run copy-replacements",
"lvl-2": "ts-node -T src/index.ts",
"run": "ts-node -T src/index.ts testcases/core/Main.elm",
"run-benchmarks": "ts-node -T src/benchmark/run.ts",
"copy-replacements": "copyfiles -u 2 src/replacements/**/* dist/replacements"
},
"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": "^93.0.0",
"copyfiles": "^2.4.1",
"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-beta.4",
"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.5",
"@types/selenium-webdriver": "^4.0.14"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^6.0.0",
"node-elm-compiler": "^5.0.4",
"ts-union": "^2.2.1",
"typescript": "^3.9.7"
}
}