-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
{
"name": "@tleef/dynamodb-js",
"version": "6.1.0",
"main": "lib/dynamodb.js",
"scripts": {
"build": "tsc",
"lint": "tslint --fix --project .",
"format": "prettier \"src/**/*.ts\" --write",
"test": "mocha \"src/**/*.test.ts\" --require ts-node/register --require source-map-support/register",
"test:coverage": "nyc --extension .ts --exclude \"src/**/*.test.ts\" --reporter lcovonly --reporter text yarn test",
"prepare": "yarn build"
},
"repository": "git+https://github.com/tleef/dynamodb-js.git",
"author": "Tom Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/tleef/dynamodb-js/issues"
},
"homepage": "https://github.com/tleef/dynamodb-js#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@types/sinon": "^9.0.8",
"@types/sinon-chai": "^3.2.5",
"@types/uuid": "^8.3.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"typescript": "^4.0.5"
},
"dependencies": {
"@aws/dynamodb-expressions": "^0.7.3",
"@tleef/type-js": "^1.5.0",
"aws-sdk": "^2.791.0",
"joi": "^17.3.0",
"uuid": "^8.3.1"
}
}