-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.14 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.14 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@pax2pay/model",
"version": "0.0.59",
"description": "Model for the new Pax2Pay API.",
"author": "Pax2Pay Ltd.",
"license": "MIT",
"repository": "https://github.com/pax2pay/model",
"bugs": {
"url": "https://github.com/pax2pay/model/issues"
},
"homepage": "https://pax2pay.com",
"private": false,
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.test.json"
}
},
"transform": {
"^.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(cryptly|authly|isoly|gracely|@pax2pay|cloudly-http|cloudly-rest)/.*)"
],
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
],
"preset": "ts-jest",
"testMatch": null
},
"scripts": {
"dev": "watch 'npm run build' .",
"lint": "eslint '**/*.{js,ts,tsx}'",
"fix": "eslint '**/*.{js,ts,tsx}' --fix",
"build": "tsc -p .",
"test": "jest --maxWorkers=2",
"test:watch": "watch jest",
"prepare": "npm run build",
"clean": "rm -rf dist node_modules coverage"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.5",
"@types/node-fetch": "^3.0.2",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"babel-core": "^6.26.3",
"babel-jest": "^27.4.5",
"dotenv": "^10.0.0",
"eslint": "^8.12.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20221021",
"eslint-plugin-simple-import-sort": "^7.0.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.4.5",
"prettierx": "github:utily/prettierx#utily-20221021",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4",
"watch": "^0.13.0"
},
"dependencies": {
"authly": "^0.2.7",
"cloudly-http": "^0.0.41",
"cloudly-rest": "^0.0.10",
"cryptly": "^0.1.12",
"gracely": "^0.0.44",
"isoly": "^0.1.19"
}
}