-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.97 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.97 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@packt/sequelize-service-model",
"version": "2.0.2",
"description": "Sequelize Service Model",
"repository": {
"type": "git",
"url": "git@github.com:PacktDev/sequelize-service-model.git"
},
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"lint": "eslint ./src ./test --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src ./test --ext .js,.jsx,.ts,.tsx --fix",
"unit": "nyc mocha",
"test": "npm run lint && npm run build && npm run unit",
"build": "tsc",
"prepublishOnly": "npm run test && npm run build"
},
"engines": {
"node": ">=8.10"
},
"author": {
"name": "Packt Publishing Ltd",
"url": "https://www.packtpub.com/"
},
"contributors": [
{
"name": "Marius Lazar",
"email": "mariuslazar93@gmail.com"
},
{
"name": "Mike Elsmore",
"email": "mikee@packtpub.com"
},
{
"name": "Chris Key",
"email": "chrisk@packt.com"
}
],
"license": "Apache-2.0",
"homepage": "https://github.com/PacktDev/sequelize-service-model#readme",
"dependencies": {
"@hapi/joi": "^15.1.0",
"@packt/error-custom": "^0.2.0",
"@packt/serverless-responses": "^0.3.3",
"@types/hapi__joi": "^15.0.3",
"noop2": "^2.0.0",
"sequelize": "^5.18.4"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/chai": "^4.2.0",
"@types/joi": "^14.3.3",
"@types/mocha": "^5.2.7",
"@types/validator": "^10.11.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"aws-sdk-mock": "^4.5.0",
"chai": "^4.2.0",
"eslint": "^5.0.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"pgpass": "^1.0.2",
"sinon": "^7.3.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}