-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "mongo-immutable",
"version": "0.0.1",
"description": "Immutable MongoDB.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/tsc && ./node_modules/.bin/mocha target/test --exit",
"coverage": "node_modules/.bin/nyc npm test && node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov"
},
"repository": {
"type": "git",
"url": "https://github.com/CoNarrative/mongo-immutable.git"
},
"keywords": [
"mongo",
"mongodb",
"immutable"
],
"author": "CoNarrative",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CoNarrative/mongo-immutable/issues"
},
"homepage": "https://github.com/CoNarrative/mongo-immutable",
"dependencies": {
"boom": "^7.2.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/boom": "^7.2.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/mongodb": "^2.2.16",
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"mocha": "5.2.0",
"nyc": "^12.0.2",
"ognom": "0.1.0",
"typescript": "^2.9.2",
"uuid": "^3.1.0"
},
"nyc": {
"include": [
"src",
"target/src"
]
}
}