-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "@readalongs/web-component",
"version": "1.5.2",
"description": "ReadAlong Web Component",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/bundle.js",
"private": false,
"files": [
"dist/"
],
"scripts": {
"bundle": "bash bundle.sh",
"cy:run": "cypress run",
"test:full-pipeline": "npm run serve-test-data & nx run serve & npm run wait-for-test-server && npm run test:once",
"test:once": "cypress run",
"test:open": "cypress open",
"serve-test-data": "sirv --dev --cors --port 8941 test-data/",
"wait-for-test-server": "wait-on -i 2000 -v -t 30000 http://localhost:3333/build/web-component.esm.js"
},
"dependencies": {
"audio-recorder-polyfill": "^0.4.1",
"howler": "^2.2.4",
"rxjs": "^7.8.1"
},
"devDependencies": {
"cypress": "^13.7.1",
"sirv-cli": "^2.0.2",
"wait-on": "^7.2.0",
"webpack-cli": "^5.1.4",
"woff2base64": "^2.0.0"
},
"license": "MIT",
"gitHead": "0a6670c1d1b0aac11d5fab2d18f233585a6b867e"
}