-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
60
61
62
63
64
65
66
67
68
{
"name": "dynamo-sequelize",
"version": "3.1.0",
"description": "A sequelize wrapper to support Sequelize 6+ and Dynamodb",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && npm run lint && npm run jest",
"lint": "./node_modules/.bin/standard",
"fix": "./node_modules/.bin/standard --fix",
"clean": "node build/clean.js",
"jest": "./node_modules/.bin/jest --coverage",
"release": "./build/release",
"build": "npm run clean && npm run compile",
"prepublishOnly": "npm run build",
"compile": "tsc",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zxdong262/dynamo-sequelize.git"
},
"keywords": [
"Sequelize",
"Dynamodb"
],
"author": "ZHAO Xudong <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/zxdong262/dynamo-sequelize/issues"
},
"homepage": "https://github.com/zxdong262/dynamo-sequelize#readme",
"dependencies": {
"dynamoose": "^2.8.5",
"lodash.get": "^4.4.2",
"sequelize": "^6.16.1"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.4.0",
"@types/lodash.get": "^4.4.6",
"coveralls": "^3.1.1",
"dotenv": "^10.0.0",
"dotenv-override-true": "^6.2.2",
"dynamodb-local": "0.0.31",
"jest": "^27.3.1",
"nanoid": "^3.2.0",
"shelljs": "^0.8.5",
"sqlite3": "^5.0.2",
"standard": "^16.0.4",
"typescript": "^4.4.4"
},
"standard": {
"ignore": [
"*-compiled.js",
"/dist/"
]
},
"jest": {
"roots": [
"tests"
]
},
"files": [
"dist",
"src",
"LICENSE"
]
}