-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.59 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.59 KB
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
{
"name": "@readalongs/web-component",
"version": "1.6.3",
"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": "npx nx build && bash bundle.sh",
"linter:maticon": "node b64Fonts.js --validate",
"cy:run": "npm run linter:maticon && cypress run",
"test:full-pipeline": "npm run linter:maticon && npm run serve-test-data & nx run serve & npm run wait-for-test-server && npm run test:once",
"test:once": "npm run linter:maticon && cypress run",
"test:open": "npm run linter:maticon && 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.2"
},
"devDependencies": {
"cypress": "^15",
"sirv-cli": "^3",
"wait-on": "^9",
"webpack-cli": "^7",
"woff2base64": "^2.0.0",
"css": "^3.0.0"
},
"license": "MIT",
"homepage": "https://github.com/ReadAlongs",
"bugs": "https://github.com/ReadAlongs/Studio-Web/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ReadAlongs/Studio-Web.git",
"directory": "packages/web-component"
}
}