-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.54 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
{
"name": "dynogels-promise",
"version": "1.0.21",
"description": "Promisified dynogels module",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/snamoah/dynogels-promise.git"
},
"homepage": "https://github.com/snamoah/dynogels-promise#readme",
"scripts": {
"commit": "git-cz",
"pretest": "npm run lint",
"prepush": "npm run test",
"precommit": "lint-staged",
"lint": "standard --verbose --fix | snazzy",
"test": "nyc mocha test/setup.js '{,!(node_modules|coverage|docs)/**/}*.test.js' --color --no-timeouts"
},
"keywords": [
"aws",
"nosql",
"amazon",
"dynogels",
"DynamoDB",
"dynamodb",
"datamapper"
],
"standard": {
"env": [
"mocha"
]
},
"lint-staged": {
"linters": {
"**/*.js": [
"prettier-standard",
"git add"
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"author": "Samuel Amoah <sa.am@programmer.net>",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^2.1.0",
"lint-staged": "^8.1.5",
"mocha": "^6.1.4",
"nyc": "^15.1.0",
"prettier-standard": "^9.1.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"dependencies": {
"async": "2.6.2",
"aws-sdk": "2.868.0",
"bluebird": "^3.5.4",
"lodash": "^4.17.20",
"uuid": "3.3.2"
},
"peerDependencies": {
"joi": "^14.3.0"
}
}