-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 751 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 751 Bytes
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
{
"name": "operational",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"test": "ts-node ./src/test/index.ts",
"clean": "rm -rf ./dist/*.*",
"lint": "prettier --write ./src/**/*.{ts}"
},
"main": "./dist/index.js",
"type": "./dist/index.d.ts",
"keywords": [],
"author": "hmmhmmhm",
"license": "MIT",
"dependencies": {
"automerge": "^0.14.1",
"cbor": "^5.0.2",
"jsondiffpatch": "^0.4.1"
},
"devDependencies": {
"@types/cbor": "^5.0.0",
"@types/node": "^14.0.23",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}