-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 773 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 773 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
30
31
32
33
{
"name": "collection-sync",
"version": "1.1.9",
"description": "",
"scripts": {
"dev": "nodemon",
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"doc": "typedoc ./src/index.ts",
"prepublish": "npm run build && npm run doc"
},
"author": "Chris Vilches",
"license": "MIT",
"main": "dist/index.js",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/nedb": "^1.8.12",
"@types/node": "^16.7.13",
"jest": "^27.1.0",
"nedb": "^1.8.0",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typedoc": "^0.21.9",
"typedoc-plugin-markdown": "^3.10.4",
"typescript": "^4.4.2"
},
"dependencies": {
"@types/ramda": "^0.27.44",
"ramda": "^0.27.1"
}
}