-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "tracklist",
"version": "1.0.0",
"description": "Utility to convert Traktor NML files into human readable track lists.",
"source": "src/index.html",
"scripts": {
"build": "parcel build --public-url ./",
"debug": "parcel",
"postinstall": "parcel build",
"start": "http-server ./dist",
"test": "mocha",
"test:debug": "mocha --inspect"
},
"quokka": {
"env": {
"params": {
"env": "NODE_PATH=./src"
}
}
},
"keywords": [
"NML",
"Traktor",
"Tracklist"
],
"author": "Troy Sandal",
"license": "Creative Commons Attribution-ShareAlike 4.0 International License.",
"dependencies": {
"@parcel/packager-raw-url": "^2.7.0",
"@parcel/transformer-webmanifest": "^2.7.0",
"http-server": "^14.1.0",
"parcel": "^2.7.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"chai": "^4.3.6",
"jsdom": "^20.0.2",
"jsdom-global": "^3.0.2",
"mocha": "^10.1.0",
"ts-node": "^10.9.1"
}
}