-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "fakerdb",
"version": "1.0.12",
"description": "",
"main": "index.js",
"dependencies": {
"bluebird": "^3.7.2",
"cachedfs": "^0.3.3",
"chance": "^1.1.5",
"cli-progress": "^3.8.2",
"colors": "^1.4.0",
"faker": "^4.1.0",
"json-schema-faker": "^0.5.0-rcv.24",
"knex": "^2.4.0",
"mongodb": "^3.5.7",
"mssql": "^6.2.0",
"nedb": "^1.8.0",
"pg": "^8.2.0",
"probability-distributions": "^0.9.1",
"tedious": "^8.3.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.1.0",
"mocha": "^10.1.0",
"nyc": "^15.0.1"
},
"scripts": {
"test": "mocha --exit --timeout 1200000 ./test/**/fakerdb.spec.js",
"test:coverage": "nyc --reporter=text --reporter=lcov mocha --exit --timeout 1200000 ./test/**/fakerdb.spec.js",
"test:travis": "nyc --reporter=text --reporter=lcov mocha --exit --timeout 1200000 ./test/**/travis.spec.js && codecov -F fakerdb",
"migrate": "knex migrate:latest --knexfile ./knex/knexfile.js",
"rollback": "knex migrate:rollback --knexfile ./knex/knexfile.js"
},
"bin": {
"fakerdb": "bin/fakerdb.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sius/fakerdb.git"
},
"keywords": [
"json",
"jsonschema",
"fake",
"faker",
"mocks",
"testdata",
"db",
"stream"
],
"author": "sius",
"license": "MIT"
}