-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.21 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
{
"name": "elm-monitor",
"version": "0.0.14",
"description": "Monitor your elm program with redux-devtools",
"main": "dist/index.js",
"source": "src/index.js",
"scripts": {
"test": "elm-test src/**/*Test.elm",
"build:parser": "npm run build:parser:elm && cp src/parser.js dist",
"build:parser:elm": "elm make src/Main.elm --optimize --output=src/parser.js && elm-minify src/parser.js --overwrite",
"build": "npm run build:parser && microbundle",
"dev": "npm run build:parser && microbundle watch",
"lint": "prettier-standard 'src/**/*.js' && standard",
"prepublishOnly": "npm run test && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/layflags/elm-monitor.git"
},
"keywords": [
"elm",
"redux-devtools",
"debugging"
],
"author": "Lay Flags <code@layfla.gs>",
"license": "MIT",
"bugs": {
"url": "https://github.com/layflags/elm-monitor/issues"
},
"homepage": "https://github.com/layflags/elm-monitor#readme",
"devDependencies": {
"elm": "^0.19.1-3",
"elm-minify": "^2.0.4",
"elm-test": "^0.19.1",
"microbundle": "^0.12.0",
"prettier-standard": "^16.3.0",
"standard": "^14.3.4"
}
}