forked from rogeriochaves/spades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1021 Bytes
/
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
{
"name": "elm-on-spades",
"version": "0.0.1",
"description": "A framework for building Elm projects with a CLI to help",
"main": "index.js",
"bin": {
"elm-generate": "./bin/elm-generate"
},
"scripts": {
"watch": "watch 'npm run build' src",
"build": "elm make src/Main.elm --output out/elm.js",
"test": "npm run test:unit && npm run test:functional",
"test:unit": "elm-test tests/unit",
"test:functional": "cross-env DEBUG=running jest tests/functional",
"install": "npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^2.15.1",
"ejs": "^2.6.1",
"elm": "^0.19.1-3",
"elm-format": "^0.8.0",
"jsdom": "^11.11.0",
"ncp": "^2.0.0",
"replace-in-files": "^1.1.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"debug": "^3.1.0",
"elm-test": "^0.19.1",
"fs-extra": "^8.1.0",
"jest": "^23.1.0",
"watch": "^1.0.2"
},
"jest": {
"testPathIgnorePatterns": [
"elm-stuff"
]
}
}