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
45 lines (45 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.52 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
{
"name": "replicache",
"description": "Offline-First for Every Application",
"version": "0.0.6",
"repository": "github:rocicorp/replicache-sdk-js",
"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",
"start:test-server": "bin/test-server --no-fake-time",
"start:diff-server": "bin/diff-server --db=/tmp/diffs serve",
"postinstall": "tool/build.sh",
"prepublishOnly": "tool/validate-binaries-for-publish.js && npm run lint && npm run test && rm -rf out && npm run build && rm -rf out.cjs && npm run build:cjs"
},
"bin": {
"test-server": "bin/test-server",
"diff-server": "bin/diff-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"
},
"module": "out/mod.js",
"main": "out.cjs/mod.js",
"dependencies": {},
"files": [
"out",
"out.cjs",
"tool/build.sh"
]
}