-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
71 lines (71 loc) · 1.68 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": "run-elm",
"version": "2.3.0",
"description": "Run Elm code from the command line",
"files": [
"lib",
"README.md"
],
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"bin": {
"run-elm": "lib/cli.js"
},
"scripts": {
"clean:test": "git clean -d -f -X test/integration",
"lint": "eslint src test --ignore-pattern elm-stuff",
"prebuild": "rimraf lib",
"build": "babel src --out-dir lib",
"postbuild": "cpx \"src/*.elm.template\" lib",
"pretest": "npm run build",
"test": "jest --runInBand",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfairbank/run-elm.git"
},
"keywords": [
"elm",
"command",
"command line",
"run",
"evaluate"
],
"author": "Jeremy Fairbank <[email protected]> (http://jeremyfairbank.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jfairbank/run-elm/issues"
},
"homepage": "https://github.com/jfairbank/run-elm#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"commander": "^2.13.0",
"fs-extra": "^6.0.1",
"node-elm-compiler": "^4.3.0",
"shelljs": "^0.7.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cpx": "^1.5.0",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"execa": "^0.10.0",
"jest": "^22.1.4"
},
"jest": {
"testEnvironment": "node",
"roots": [
"test/"
],
"watchPathIgnorePatterns": [
"<rootDir>/test/.*/run-elm-main.*\\.js",
"<rootDir>/test/.*/RunElmMain.*\\.elm"
]
}
}