-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 976 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
{
"name": "rabbithole-ext",
"version": "1.0.0",
"description": "Get lost in a rabbithole",
"main": "browser-polyfill.min.js",
"dependencies": {
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"elm": "^0.19.1-3",
"elm-format": "^0.8.4",
"elm-oracle": "^1.1.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.7.0"
},
"watch": {
"elm-background-build": {
"patterns": [
"src"
],
"extensions": "elm",
"quiet": false
},
"elm-popup-build": {
"patterns": [
"src"
],
"extensions": "elm",
"quiet": false
}
},
"scripts": {
"firefox": "cd src; web-ext run",
"elm-background-build": "cd src; elm make elm/Background.elm --output background.js",
"elm-popup-build": "cd src; elm make elm/Popup.elm --output popup/script.js"
},
"author": "",
"license": "ISC"
}