-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "newebpay",
"version": "0.0.11",
"description": "Module for Newebpay",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint '{src,apps,libs}/**/*.ts' --fix",
"test": "jest --maxWorkers=2",
"test:watch": "jest --watch"
},
"keywords": [
"Newebpay"
],
"author": "11",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:libterty/newebpay.git"
},
"bugs": {
"url": "https://github.com/libterty/newebpay/issues"
},
"homepage": "https://github.com/libterty/newebpay",
"dependencies": {
"class-validator": "^0.11.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0"
},
"files": [
"lib/**/*"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}