-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "@yeiniel/rest-hal-sequelize",
"version": "4.0.0",
"description": "REST HAL API built on top of Sequelize models using Express.js",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "ava",
"lint": "eslint .",
"typedoc": "typedoc --exclude **/*.spec.ts --out docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeiniel/rest-hal-sequelize.git"
},
"keywords": [
"rest",
"hal",
"sequelize"
],
"author": "Yeiniel Suarez Sosa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeiniel/rest-hal-sequelize/issues"
},
"homepage": "https://github.com/yeiniel/rest-hal-sequelize#readme",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.15",
"@types/node": "^16.18.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@yeiniel/rest-hal-test-tools": "^4.0.1",
"ava": "^5.1.1",
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.32.0",
"nyc": "^15.1.0",
"sqlite3": "^5.1.4",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"body-parser": "^1.20.1",
"express": "^4.18.2",
"JSONStream": "^1.3.5",
"sequelize": "^6.28.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}