This repository was archived by the owner on Dec 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.52 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.52 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
{
"name": "@op/api-sdk",
"version": "1.1.1",
"description": "Simple SDK for accessing OP APIs",
"homepage": "https://github.com/op-developer/op-api-javascript-sdk",
"keywords": [
"OP API",
"OP-Developer",
"OPEN OP",
"OP SDK"
],
"bugs": {
"url": "https://github.com/op-developer/op-api-javascript-sdk/issues"
},
"main": "./build/index.js",
"scripts": {
"build": "tsc -p .",
"prepare": "npm run -s build",
"test": "npm run -s build && jest",
"precommit": "pretty-quick --staged"
},
"author": {
"name": "OP-Developer",
"url": "https://op-developer.fi"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/op-developer/op-api-javascript-sdk.git"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^10.14.10",
"axios": "^0.21.1",
"object-assign-deep": "^0.3.1"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"hoek": "^5.0.4",
"husky": "^0.14.3",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"typescript": "^3.5.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": "./preprocessor.js"
},
"testMatch": [
"**/tests/*.(ts|tsx|js)"
]
}
}