forked from rocicorp/replicache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.08 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
{
"name": "replicache",
"version": "0.0.1",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint --ext .ts src/",
"doc": "typedoc --name Replicache --mode library --exclude node_modules --exclude src/*.test.ts --excludeNotExported --excludePrivate --excludeProtected --out docs --excludeExternals src/mod.ts",
"build": "tsc",
"build:watch": "tsc --watch",
"build:cjs": "tsc --outDir out.cjs --module CommonJS",
"build:testServer": "tool/build.sh",
"start:testServer": "build/replicache-client/test_server"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"jest": "^26.0.1",
"node-fetch": "^2.6.0",
"prettier": "^2.0.0",
"ts-jest": "^26.0.0",
"typedoc": "^0.17.0-3",
"typescript": "^3.9.3",
"web-streams-polyfill": "^2.1.1"
},
"module": "out/mod.js",
"main": "out.cjs/mod.js",
"dependencies": {}
}