-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "codeceptjs-dbhelper",
"version": "1.2.2",
"description": "Database helper for CodeceptJS that uses database-js",
"homepage": "https://github.com/thiagodp/codeceptjs-dbhelper",
"author": "thiagodp",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thiagodp/codeceptjs-dbhelper.git"
},
"bugs": {
"url": "https://github.com/thiagodp/codeceptjs-dbhelper/issues"
},
"keywords": [
"codeceptjs",
"database",
"database-js"
],
"main": "index.js",
"scripts": {
"setup:v2": "cd codeceptjs_check/v2 && npm i && cd ../..",
"setup:v3": "cd codeceptjs_check/v3 && npm i && cd ../..",
"test": "mocha __tests__",
"test:v2": "cd codeceptjs_check/v2 && npx codeceptjs run",
"test:v3": "cd codeceptjs_check/v3 && npx codeceptjs run",
"test:all": "npm run test && npm run test:v2 && npm run test:v3",
"doc": "tsc index.js --declaration --allowJs --emitDeclarationOnly",
"preversion": "npm run doc && npm run test"
},
"dependencies": {
"database-js": "^3.0.11"
},
"devDependencies": {
"codeceptjs": "^3.1.2",
"database-js-sqlite": "^1.3.0",
"mocha": "^8.4.0",
"typescript": "^4.4.3"
}
}