forked from offenesdresden/dvbjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.75 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
43
44
{
"name": "dvbjs-root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "run-s clean lint tsc",
"build:react_example": "yarn workspace react-example build",
"clean": "rimraf packages/*/.nyc_output packages/*/coverage packages/*/dist packages/*/docs packages/*/build packages/*/tsconfig.tsbuildinfo",
"coveralls": "cat ./packages/dvbjs/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": "cpy README.md packages/dvbjs",
"docs:examples": "yarn workspace dvbjs-examples start",
"docs:readme": "node .markdown-magic.config.js",
"lint": "eslint \"packages/*/{src,test}/*.{ts,tsx}\"",
"publish:dvbjs": "npm-run-all uncommitted build -p test build:react_example docs && 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",
"tsc": "tsc -b packages/*",
"uncommitted": "uncommitted",
"watch": "run-p 'tsc --watch' 'test:node --watch --watch-extensions ts'"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"coveralls": "^3.0.6",
"cpy-cli": "^2.0.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"markdown-magic": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.13",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"uncommitted": "^1.0.0"
}
}