-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "@irontitan/sloth",
"version": "0.1.2",
"description": "A simple but useful set of tools to aid NodeJS developers on writing tests.",
"main": "dist/index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "mocha -r ts-node/register test/**/*.test.ts",
"docs": "typedoc",
"clean": "rm -rf dist",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"prepare": "npm run build:clean"
},
"keywords": [
"test",
"database",
"toolbox",
"mock"
],
"contributors": [
"Rogério Munhoz <[email protected]>"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.1",
"sinon": "^7.5.0",
"ts-node": "^8.4.1",
"typedoc": "^0.15.0",
"typedoc-plugin-external-module-name": "^2.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@types/mongodb": "^3.3.6",
"ajv": "^6.10.2",
"mongodb": "^3.3.2",
"mongodb-memory-server": "^5.2.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/irontitan/sloth.git"
},
"bugs": {
"url": "https://github.com/irontitan/sloth/issues"
},
"homepage": "https://github.com/irontitan/sloth#readme",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
]
}