-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.28 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.28 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
{
"name": "@ncryptyr/client",
"description": "Client for the Ncryptyr API",
"version": "0.0.26-alpha.19",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "NR1E, Inc",
"publishConfig": {
"access": "public"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/nr1etech/ncryptyr-client-js.git"
},
"files": [
"/dist/**/*.d.ts",
"/dist/**/*.js",
"/dist/**/*.js.map",
"!/dist/**/*.test.*"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "pnpm run compile",
"pretest": "pnpm run compile",
"posttest": "pnpm run lint",
"check": "prettier --check .",
"makepretty": "prettier --write ."
},
"dependencies": {
"axios": "^1.6.3",
"@nr1e/commons": "^0.0.2-alpha.15",
"joi": "^17.11.0",
"url": "^0.11.3"
},
"peerDependencies": {
"@nr1e/commons": "^0.0.2-alpha.16",
"joi": "^17.11.0",
"axios": "^1.6.3"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^20.9.1",
"gts": "^5.2.0",
"jest": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
}
}