UNPKG

1.11 kBJSONView Raw
1{
2 "name": "node-elm-compiler",
3 "version": "5.0.6",
4 "description": "A Node.js interface to the Elm compiler binaries.",
5 "main": "dist/index.js",
6 "scripts": {
7 "prepack": "npm run build",
8 "build": "rm -rf dist/ && tsc",
9 "test": "rm -rf test/fixtures/elm-stuff && mocha test/**/*.ts --require ts-node/register --watch-extensions ts"
10 },
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/rtfeldman/node-elm-compiler.git"
14 },
15 "engines": {
16 "node": ">=4.0.0"
17 },
18 "keywords": [
19 "elm",
20 "compiler",
21 "node"
22 ],
23 "author": "Richard Feldman",
24 "license": "BSD-3-Clause",
25 "bugs": {
26 "url": "https://github.com/rtfeldman/node-elm-compiler/issues"
27 },
28 "homepage": "https://github.com/rtfeldman/node-elm-compiler",
29 "dependencies": {
30 "cross-spawn": "6.0.5",
31 "find-elm-dependencies": "^2.0.4",
32 "lodash": "^4.17.19",
33 "temp": "^0.9.0"
34 },
35 "devDependencies": {
36 "@types/mocha": "^5.2.7",
37 "@types/node": "^12.6.8",
38 "chai": "4.2.0",
39 "glob": "7.1.4",
40 "mocha": "6.2.0",
41 "ts-node": "^8.3.0",
42 "typescript": "^3.5.3"
43 }
44}