-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "tabviewer",
"version": "0.0.1",
"directories": {
"test": "test"
},
"scripts": {
"restore": "spago install && npm install",
"build": "spago build && echo Ctrl-f5 your browser if non-purescript changes were made!",
"test": "spago test",
"serve": "npm run build && parcel serve index.html",
"release": "rm -rf docs && npm run build && parcel build ./index.html --dist-dir docs/ --public-url replacethiswithadot && sed -i 's/replacethiswithadot/./g' docs/index.html && git checkout -- docs/CNAME",
"publish": "npm run release && git add . && git commit -m publish",
"clean": "rm -rf .cache .spago .psci_modules node_modules output .parcel-cache",
"repl": "spago repl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tablature-viewer/tablature-viewer.github.io.git"
},
"keywords": [
"guitar",
"tablature",
"dozenal"
],
"author": "Chiel ten Brinke",
"license": "ISC",
"bugs": {
"url": "https://github.com/tablature-viewer/tablature-viewer.github.io/issues"
},
"homepage": "https://github.com/tablature-viewer/tablature-viewer.github.io",
"description": "",
"devDependencies": {
"@parcel/packager-raw-url": "^2.8.3",
"@parcel/transformer-image": "2.8.3",
"@parcel/transformer-webmanifest": "^2.8.3",
"parcel": "2.8.3",
"purescript": "0.15.7",
"purs-tidy": "latest",
"spago": "0.20.9"
},
"dependencies": {
"lz-string": "^1.4.4",
"nosleep.js": "^0.12.0",
"process": "^0.11.10",
"unirest": "^0.6.0",
"url": "^0.11.0",
"xhr2": "^0.2.1"
}
}