-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "hangman",
"version": "1.0.0",
"description": "Hangman built in Elm for coding challenge",
"main": "index.js",
"scripts": {
"test": "elm-test src/project/tests/Main.elm",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --copy-files --ignore project",
"postbuild": "elm-make ./src/project/Main.elm --output ./dist/elm.js",
"start": "npm run build && node server.js",
"dev": "elm-reactor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/churchie317/hangman.git"
},
"keywords": [
"elm",
"hangman",
"coding-challenge"
],
"author": "Eric Churchill",
"license": "MIT",
"bugs": {
"url": "https://github.com/churchie317/hangman/issues"
},
"homepage": "https://github.com/churchie317/hangman#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"elm": "^0.18.0",
"elm-live": "^2.7.4",
"elm-test": "^0.18.2",
"rimraf": "^2.5.4"
},
"dependencies": {
"express": "^4.14.1",
"request": "^2.79.0"
}
}