-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "workerdb-monorepo",
"private": true,
"license": "MIT",
"keywords": [
"react",
"webworker",
"db",
"database",
"offline-first",
"nosql",
"jsonschema",
"rxjs",
"localstorage",
"indexeddb",
"encryption",
"pouchdb",
"couchdb",
"rx",
"reactive",
"realtime"
],
"author": "Benjamin Kniffler <bkniffler@me.com>",
"bugs": {
"url": "https://github.com/bkniffler/workerdb"
},
"repository": {
"type": "git",
"url": "https://github.com/bkniffler/workerdb.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"up": "yarn upgrade-interactive --latest",
"docs": "docsify serve docs",
"netlify": "yarn build && cd example/react && yarn && yarn build",
"prepublishOnly": "yarn build && yarn test",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules && rm -rf ./packages/*/lib",
"dev": "lerna run --parallel dev",
"lp": "lerna publish --registry https://registry.npmjs.org",
"lpf": "lerna publish --registry https://registry.npmjs.org --force-publish",
"test": "yarn build && jest",
"coverage": "codecov"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.8",
"@types/react": "^16.7.6",
"@types/react-test-renderer": "^16.0.3",
"codecov": "^3.1.0",
"docsify-cli": "^4.3.0",
"jest": "24.0.0-alpha.9",
"lerna": "^3.4.3",
"npm-run-all": "^4.1.3",
"ts-jest": "^23.10.4",
"typescript": "^3.1.6"
},
"resolutions": {
"@types/react": "^16.7.2",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": false,
"collectCoverageFrom": [
"packages/*/src/**/*.ts",
"packages/*/src/**/*.tsx"
],
"coverageReporters": [
"html",
"cobertura",
"text"
]
}
}