-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.78 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
{
"name": "dynazord",
"description": "DynamoDB NodeJS ORM",
"version": "1.5.2",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ext .js .",
"test": "nyc mocha",
"preversion": "npm run lint && npm test",
"postversion": "git push && git push --tags"
},
"author": "James D <[email protected]> (https://jdrydn.com)",
"license": "MIT",
"homepage": "https://github.com/someimportantcompany/dynazord",
"repository": "https://github.com/someimportantcompany/dynazord",
"bugs": "https://github.com/someimportantcompany/dynazord/issues",
"_moduleAliases": {
"dynazord": "./"
},
"files": [
"src"
],
"keywords": [
"amazon",
"aws",
"dynamodb",
"dynamo",
"model",
"schema",
"nosql"
],
"dependencies": {
"aws-sdk": "^2.802.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"date-fns": "^2.16.1",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-sort-requires": "^2.1.0",
"faker": "^5.1.0",
"http-assert": "^1.4.1",
"js-yaml": "^3.14.1",
"lodash": "^4.17.20",
"mocha": "^6.2.3",
"mockdate": "^3.0.2",
"module-alias": "^2.2.2",
"ms": "^2.1.3",
"nanoid": "^3.1.32",
"nock": "^13.0.5",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"ulid": "^2.3.0",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0"
},
"mocha": {
"exit": true,
"recursive": true,
"require": [
"module-alias/register",
"./test/bootstrap.js"
],
"ignore": [
"*node_modules*"
],
"spec": [
"./test/*.test.js",
"./test/**/*.test.js"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}