-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
52
53
54
55
56
57
{
"name": "rosefinch",
"version": "1.0.0",
"description": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && karma start --auto-watch",
"test:single": "npm run lint && karma start --single-run",
"dev": "parcel src/index.html",
"build": "parcel build src/index.html",
"lint": "tslint --format stylish --project tsconfig.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"@abraham/reflection": "^0.7.0",
"abcjs": "^6.0.0-beta.32",
"cewdi": "^0.2.4",
"idb": "^5.0.4",
"lit-element": "^2.4.0",
"page": "^1.11.6",
"tone": "^14.7.58",
"uuid": "^8.3.0"
},
"devDependencies": {
"@open-wc/testing-helpers": "^1.8.9",
"@types/jasmine": "^3.5.12",
"@types/page": "^1.8.0",
"@types/uuid": "^8.3.0",
"jasmine-core": "^3.6.0",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^3.3.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.1.0",
"karma-typescript-es6-transform": "^5.1.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"parcel-plugin-static-files-copy": "^2.5.0",
"tslib": "^2.0.1",
"tslint": "^6.1.3",
"tslint-config-standard-plus": "^2.3.0",
"typescript": "^4.0.2"
},
"browserslist": [
"last 2 Chrome version"
],
"staticFiles": {
"staticPath": [
"assets/audio",
"assets/favicons",
"_redirects"
]
}
}