-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@serafin/pipeline-mongodb",
"version": "0.2.4",
"description": "Serafin pipeline for the MongoDB database",
"contributors": [
{
"name": "Nicolas Degardin",
"email": "[email protected]"
},
{
"name": "Sébastien de Saint Florent",
"email": "[email protected]"
}
],
"keywords": [
"crud",
"mongodb",
"database",
"serafin",
"pipeline",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serafin-labs/pipeline-mongodb"
},
"dependencies": {
"@serafin/pipeline": "^0.11.0",
"lodash": "^4.17.11",
"mongodb": "^3.2.4"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash": "^4.14.125",
"@types/mocha": "^5.2.6",
"@types/mongodb": "^3.1.26",
"@types/node": "^12.0.0",
"@types/node-uuid": "0.0.28",
"cache-loader": "^3.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"clean-webpack-plugin": "^2.0.2",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mongo-mock": "^3.4.0",
"nodemon": "^1.19.0",
"remap-istanbul": "^0.13.0",
"ts-loader": "^6.0.0",
"typescript": "3.3.3333",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2",
"webpack-shell-plugin": "^0.5.0"
},
"scripts": {
"test": "node_modules/.bin/istanbul cover --dir ./lib/coverage/ node_modules/.bin/_mocha -- --inspect-brk -R spec ./lib/test.js && node_modules/.bin/remap-istanbul -i ./lib/coverage/coverage.json -e lib/webpack/bootstrap -t lcovonly -o ./lib/coverage/lcov.info && node_modules/.bin/remap-istanbul -i ./lib/coverage/coverage.json -e lib/webpack/bootstrap -t html -o ./lib/coverage/lcov-report",
"debug": "node_modules/.bin/mocha -R spec ./lib/test.js --inspect-brk=[::]:9229",
"predev": "npm install",
"dev": "npm run-script watch-dev",
"watch-dev": "node_modules/.bin/webpack --mode development --watch",
"build": "webpack --mode production",
"prepublishOnly": "npm ci && npm run-script build && npm test"
}
}