-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 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
{
"name": "dynameh",
"version": "4.5.1",
"description": "DynamoDB on Node more easier",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"docs": "rimraf ./docs && typedoc && touch ./docs/.nojekyll && gh-pages -d docs -t",
"lint": "eslint . --ext .ts,.tsx",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test && npm run docs",
"test": "mocha --recursive --throw-deprecation --require ts-node/register \"src/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushplay/dynameh.git"
},
"keywords": [
"dynamodb"
],
"contributors": [
"Jeffery Grajkowski <pushplay@gmail.com> (https://github.com/pushplay/)",
"Graham Baradoy <graham@giftbit.com> (https://github.com/Baradoy/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pushplay/dynameh/issues"
},
"homepage": "https://pushplay.github.io/dynameh/",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "12.x",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"aws-sdk": "^2.1132.0",
"chai": "^4.3.6",
"eslint": "^8.15.0",
"gh-pages": "^4.0.0",
"mocha": "^9.0.1",
"rimraf": "^3.0.2",
"touch": "^3.1.0",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"peerDependencies": {
"aws-sdk": "^2.431.0"
}
}