-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.14 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
{
"name": "dynamodb-event-store",
"version": "2.2.0",
"description": "An event store implementation on top of Amazon DynamoDB",
"author": "Chris Baker <mail.chris.baker@gmail.com>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/bakerface/dynamodb-event-store.git"
},
"scripts": {
"test": "xo && nyc --check-coverage _mocha",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info"
},
"nyc": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100,
"reporter": [
"lcov",
"text"
]
},
"xo": {
"envs": [
"mocha",
"node"
],
"space": true,
"rules": {
"array-bracket-spacing": [
"error",
"always"
],
"brace-style": [
"error",
"stroustrup"
],
"object-curly-spacing": [
"error",
"always"
]
}
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"dynalite": "^1.1.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"xo": "^0.17.1"
},
"dependencies": {
"aws-sdk": "^2.9.0"
}
}