-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "blazend",
"version": "0.8.0",
"description": "Tool to foster blazing fast backend development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "rm -rf ./dist/ && npm run tsc",
"pub": "npm i && npm run build && npm publish",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"test-watch": "mocha -r ts-node/register src/**/*.test.ts --watch --watch-files src/**/*",
"coverage": "nyc -r lcov npm run test"
},
"author": "",
"license": "ISC",
"dependencies": {
"knex": "^0.21.14"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/knex": "^0.16.1",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"pg": "^8.5.1",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}