-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 963 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
{
"name": "beaming",
"source": "src/index.html",
"browserslist": [
"defaults"
],
"eslintConfig": {
"env": {
"browser": true
},
"globals": {
"doorbell": false
}
},
"scripts": {
"build": "parcel build --public-url 'https://kflorence.github.io/beaming'",
"build-itch": "rm -rf .parcel-cache dist && parcel build --public-url ./ && (cd dist && zip -r ../beaming.zip .)",
"start": "parcel",
"test": "npm run test-lint && npm run test-functional",
"test-functional": "mocha test --recursive --timeout 20000",
"test-lint": "standard"
},
"devDependencies": {
"chromedriver": "^128.0.3",
"mocha": "^10.4.0",
"parcel": "^2.12.0",
"selenium-webdriver": "^4.21.0",
"standard": "^17.1.0",
"wait-on": "^7.2.0"
},
"dependencies": {
"@types/chroma-js": "^2.4.4",
"chroma-js": "^2.4.2",
"jsondiffpatch": "^0.6.0",
"pako": "^2.1.0",
"paper": "^0.12.17"
}
}