-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.7 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
{
"name": "dvbjs-root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-s clean lint tsc",
"build:react_example": "yarn workspace react-example build",
"clean": "rimraf --glob packages/*/.nyc_output packages/*/coverage packages/*/dist packages/*/docs packages/*/build packages/*/tsconfig.tsbuildinfo",
"coveralls": "cd packages/dvbjs && cat ./coverage/lcov.info | coveralls",
"docs": "run-s docs:api docs:examples docs:readme docs:copy",
"docs:api": "yarn workspace dvbjs node node_modules/.bin/ts-docs-gen --entryFile src/index.ts",
"docs:copy": "node scripts/copy.js",
"docs:examples": "yarn workspace dvbjs-examples start",
"docs:readme": "node .markdown-magic.config.js",
"lint": "eslint \"packages/*/{src,test}/*.ts\"",
"publish:dvbjs": "npm-run-all build -p test:node && yarn workspace dvbjs publish",
"run_example": "yarn tsc && yarn workspace react-example start",
"test": "run-p test:*",
"test:browser": "yarn workspace dvbjs karma start",
"test:node": "yarn workspace dvbjs nyc mocha --timeout 20000",
"tsc": "tsc -b packages/dvbjs packages/examples packages/react-example",
"uncommitted": "uncommitted",
"watch": "run-p 'tsc --watch' 'test:node --watch --watch-extensions ts'"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"coveralls": "^3.1.0",
"eslint": "^8.40.0",
"markdown-magic": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"source-map-support": "^0.5.19",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"uncommitted": "^1.0.0",
"yarn": "^1.22.19"
}
}