-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@exactpayments/x2-deltas",
"version": "2.4.0",
"repository": "[email protected]:fintechdev/X2-Libraries",
"author": "X2 Dev Team <[email protected]>",
"license": "None",
"main": "./dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@exactpayments/eslint-config-x2": "^1.0.5",
"@exactpayments/eslint-plugin-x2": "^1.0.4",
"@types/jest": "^27.0.2",
"@types/koa": "^2.13.4",
"@types/mongodb": "^3.6.18",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.2.5",
"pre-commit": "^1.2.2",
"ts-jest": "^27.0.7",
"typescript": "^4.3.4"
},
"pre-commit": [
"lint",
"test"
]
}