forked from creately/mungo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 897 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
{
"name": "@creately/mungo",
"version": "1.3.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "prettier --print-width 120 --single-quote --trailing-comma es5 --write \"src/**/*.ts\"",
"test": "MONGO_URL='mongodb://localhost:27017' jest --coverage",
"test:watch": "MONGO_URL='mongodb://localhost:27017' jest --watch --coverage",
"prepublish": "npm run lint && npm run build"
},
"keywords": [
"mongo",
"update",
"documents"
],
"author": "Muhammed Thanish <[email protected]> (http://thanish.me/)",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.13",
"jest": "^24.8.0",
"mongodb": "^3.2.6",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"webpack": "^4.32.2"
},
"dependencies": {
"mingo": "^2.3.5"
}
}