-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1002 Bytes
/
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
{
"name" : "typedy" ,
"version" : "0.1.0" ,
"main" : "dist/client/client.js" ,
"types" : "dist/client/client.d.ts" ,
"scripts": {
"lint": "eslint 'src/**/*' --fix",
"build": "tsc",
"test": "jest --coverage=true",
"prepublishOnly" : "tsc -d",
"publish": "npm run test && npm run build && npm publish --access=public"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/lodash.omit": "^4.5.6",
"@types/node": "^13.9.3",
"@types/sinon": "^7.5.2",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^2.0.1",
"sinon": "^9.0.1",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3",
"uuid": "^8.0.0"
},
"dependencies": {
"aws-sdk": "^2.814.0",
"lodash.omit": "^4.5.0"
}
}