-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 962 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
{
"dependencies": {
"async": "^3.2.0",
"cookie": "^0.4.1",
"escape-html": "^1.0.3",
"extsprintf": "^1.4.0",
"moment": "^2.29.1",
"twig": "^1.15.4",
"video-playlist": "git+https://github.com/plepe/video-playlist.git",
"ws": "^7.5.0"
},
"scripts": {
"start": "node server.js",
"http-server": "http-server ./ -p 8000",
"lint": "standard --fix *.js src/*.js",
"build": "node bin/create_cache_id.js && npm run build-obs-scene-collection && browserify src/index.js -o dist/app.js",
"build-obs-scene-collection": "node bin/compile-obs.js",
"watch": "watchify -d src/index.js -o dist/app.js -v",
"prepare": "npm run build",
"test": "jest --env=jsdom"
},
"devDependencies": {
"browserify": "^17.0.0",
"http-server": "^0.12.3",
"standard": "^16.0.3",
"watchify": "^3.11.1",
"jest": "^27.0.6"
},
"jest": {
"verbose": true,
"globals": {
"window": {}
}
}
}