-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "sparkplug",
"version": "0.3.2",
"description": "A very thin wrapper over DynamoDB DocumentClient",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint . --ext .js",
"lint:fix": "./node_modules/.bin/eslint --fix . --ext .js",
"test": "AWS_ACCESS_KEY_ID=\"fake\" AWS_SECRET_ACCESS_KEY=\"key\" CONTEXT=test nyc ./node_modules/.bin/mocha -t 12000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harryhope/sparkplug.git"
},
"keywords": [
"dynamodb",
"dynamo",
"aws",
"aws-sdk",
"database",
"nosql"
],
"author": "Harry Hope",
"license": "MIT",
"bugs": {
"url": "https://github.com/harryhope/sparkplug/issues"
},
"homepage": "https://github.com/harryhope/sparkplug#readme",
"devDependencies": {
"chai": "^4.1.2",
"dynalite": "^2.0.0",
"eslint": "^5.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^7.1.1",
"nyc": "^14.1.1"
},
"dependencies": {
"aws-sdk": "^2.332.0",
"lodash": "^4.17.14"
}
}