-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "dbfixtures",
"version": "2.1.0",
"description": "A NodeJS equivalent to DbUnit.",
"keywords": [
"db fixtures",
"test fixtures",
"fixtures"
],
"homepage": "https://github.com/PedroHenriques/dbfixtures",
"bugs": "https://github.com/PedroHenriques/dbfixtures/issues",
"author": "Pedro Henriques <[email protected]> (http://pedrojhenriques.com)",
"main": "lib/index.js",
"types": "lib/index.d.js",
"directories": {
"lib": "lib/",
"test": "test/"
},
"scripts": {
"test": "mocha",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json",
"build": "tsc",
"watch": "npm run build -- -w",
"prestart": "npm run build && npm run lint",
"start": "node dist/index.js",
"run": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:PedroHenriques/dbfixtures.git"
},
"license": "MIT",
"private": false,
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^8.1.3",
"proxyquire": "^2.1.3",
"sinon": "^9.1.0",
"tslint": "^6.1.2",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=8"
}
}