forked from Ravenstine/awsdown
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dynamodb-leveldown",
"description": "A LevelDOWN API implementation of AWS DynamoDB.",
"main": "dist/index.js",
"scripts": {
"pretest": "tsc && cp -R ./types ./dist/lib/types",
"test": "./test.sh",
"posttest": "./testPost.sh",
"climate": "./climate.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/GioCirque/DynamoDb-LevelDown.git"
},
"author": "Gio Palacino <gio@palacino.net>",
"license": "Apache-2.0",
"keywords": [
"aws",
"database",
"db",
"dynamo",
"dynamodb",
"storage",
"store",
"level",
"leveldb",
"levelup",
"leveldown",
"pouchdb"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"abstract-leveldown": "^6.3.0",
"aws-sdk": "^2.812.0",
"level-supports": "^1.0.1",
"lodash": "^4.17.20",
"through2": "^4.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/abstract-leveldown": "^5.0.1",
"@types/aws-sdk": "^2.7.0",
"@types/levelup": "^4.3.0",
"@types/lodash": "^4.14.165",
"@types/tape": "^4.13.0",
"@types/through2": "^2.0.36",
"faucet": "^0.0.1",
"levelup": "^4.4.0",
"nyc": "^15.1.0",
"semantic-release": "^17.3.0",
"source-map-support": "^0.5.19",
"tap-junit": "^4.0.0",
"tape": "^5.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"release": {
"branch": "master",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "fix",
"release": "patch"
},
{
"type": "refactor",
"release": "minor"
},
{
"type": "level",
"release": "minor"
},
{
"type": "style",
"release": "patch"
},
{
"type": "overhaul",
"release": "major"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
}
}