-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "ielm",
"version": "2.1.0",
"description": "Interactive Elm",
"main": "ielm.js",
"bin": {
"ielm": "./cli"
},
"dependencies": {
"array-unique": "^0.3.2",
"child-process-promise": "^2.2.1",
"codemirror": "^5.32.0",
"css-loader": "^0.28.7",
"exit-hook": "^1.1.1",
"node-elm-repl": "^4.1.0",
"node-simplehttpserver": "^0.2.7",
"npm-module-path": "^2.0.2",
"npm-which": "^3.0.1",
"random-hash": "^4.0.1",
"recursive-copy": "^2.0.7",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"tmp": "0.0.33",
"webpack": "^3.9.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"webpack-dev-server": "^2.9.5"
},
"scripts": {
"build": "node ./cli build",
"start": "node ./cli",
"clean-start": "node ./cli clean-run",
"dev-start": "node ./cli dev-run local",
"clean-dev-start": "node ./cli clean-dev-run local",
"test": "node ./cli test",
"build-local": "node ./cli build local",
"start-local": "node ./cli run local",
"clean-start-local": "node ./cli clean-run local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shamansir/ielm.git"
},
"author": "Ulric Wilfred <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/shamansir/ielm/issues"
},
"homepage": "https://github.com/shamansir/ielm#readme"
}