-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
{
"name": "@deliveryhero/dynamodb-lock",
"private": false,
"version": "1.2.4",
"license": "MIT",
"description": "Distributed locking library backed by DynamoDB.",
"main": "./lib/index.js",
"files": [
"lib/"
],
"scripts": {
"self-peers": "install-self-peers -- --ignore-scripts",
"prepare": "yarn self-peers && yarn format && yarn lint && yarn compile",
"format": "yarn prettier --config .prettierrc \"{src,test, index}/**/*.ts\" --write",
"compile": "rm -Rf lib/* && tsc --project tsconfig.build.json",
"lint": "yarn eslint --fix \"{src,test}/**/*.ts\"",
"test": "yarn test:unit && yarn test:e2e",
"test:e2e": "yarn jest --config jest-e2e.config.js",
"test:unit": "yarn jest --config jest-unit.config.js --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deliveryhero/dynamodb-lock-nodejs.git"
},
"author": "Delivery Hero",
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"@types/jest": "^27.4.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"peerDependencies": {
"aws-sdk": "^2.1106.0"
},
"peerDependenciesMeta": {
"aws-sdk": {
"optional": true
}
},
"dependencies": {
"uuid": "^8.3.2"
}
}