-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "m2m-keygen",
"version": "1.0.1",
"description": "Simplify Machine to Machine signature generation in a secure way",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "https://github.com/Billcorporate/m2m_keygen_ts",
"bugs": {
"url": "https://github.com/Billcorporate/m2m_keygen_ts/issues"
},
"author": "Denis <Zaratan> Pasin <zaratan@hey.com>",
"license": "MIT",
"private": false,
"scripts": {
"prepare": "husky install",
"prepublish": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src tests"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"next": "^13.5.4",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.jsx": "eslint --cache --fix",
"*.ts": "eslint --cache --fix",
"*.tsx": "eslint --cache --fix"
},
"dependencies": {}
}