forked from warp-exchange/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.67 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "warpexchange",
"description": "WarpExchange Payment Gateway :) ",
"version": "1.0.7",
"author": "lucasschoch",
"bugs": {
"url": "https://github.com/warp-exchange/rest-api/issues"
},
"dependencies": {
"axios": "0.18.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "23.3.10",
"@types/node": "10.12.10",
"husky": "1.2.0",
"jest": "23.6.0",
"lint-staged": "8.1.0",
"prettier": "1.15.2",
"ts-jest": "23.10.5",
"tslint": "5.11.0",
"typescript": "3.1.6"
},
"homepage": "https://github.com/warp-exchange/rest-api#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"bitcoin",
"criptocurrencies",
"gateway",
"litecoin",
"payment",
"warp",
"warp exchange"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"main": "dist/src/index.js",
"prettier": {
"parser": "typescript",
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
},
"private": false,
"repository": "git+https://github.com/warp-exchange/rest-api.git",
"scripts": {
"build": "yarn audit && tsc",
"jest:watch": "jest --watch",
"prettier": "prettier --write '{.,./src/**}/*.ts'",
"test": "jest",
"watch": "tsc -w"
}
}