-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 899 Bytes
/
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
{
"name": "ts-vector-clock",
"version": "1.0.1",
"description": "A simple Vector Clock implementation",
"main": "lib/index.js",
"scripts": {
"setup": "npm install",
"test": "jest",
"build": "tsc",
"build-watch": "tsc --watch",
"clean": "shx rm -rf node_modules/ dist/ docs/",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll"
},
"keywords": [
"vector-clock",
"crdt",
"typescript"
],
"author": "Matthew Lloyd",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MattLloyd101/ts-vector-clock.git"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
}
}