-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.27 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.27 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
87
88
89
90
91
92
93
94
{
"name": "tier",
"version": "5.10.0",
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./client": {
"import": {
"types": "./dist/mjs/client.d.ts",
"default": "./dist/mjs/client.js"
},
"require": {
"types": "./dist/cjs/client.d.ts",
"default": "./dist/cjs/client.js"
}
}
},
"description": "SDK for using https://tier.run in Node.js applications",
"repository": "https://github.com/tierrun/node-sdk",
"author": "Isaac Z. Schlueter <i@izs.me> (https://izs.me)",
"license": "BSD-3-Clause",
"scripts": {
"prepare": "tsc -p tsconfig-cjs.json && tsc -p tsconfig-esm.json && bash fixup.sh",
"format": "prettier --write . --loglevel warn",
"test": "c8 tap",
"snap": "c8 tap",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"preversion": "npm test",
"postversion": "npm run prepare && npm publish",
"prepublishOnly": "git push origin --follow-tags",
"postpublish": "rm -rf dist",
"typedoc": "typedoc --tsconfig tsconfig-esm.json ./src/*.ts"
},
"prettier": {
"semi": false,
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"jsxSingleQuote": false,
"bracketSameLine": true,
"arrowParens": "avoid",
"endOfLine": "lf"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"tap": {
"coverage": false,
"node-arg": [
"--no-warnings",
"--loader",
"ts-node/esm"
],
"ts": false
},
"devDependencies": {
"@types/node": "^18.0.6",
"@types/node-fetch": "^2.6.2",
"@types/opener": "^1.4.0",
"@types/tap": "^15.0.6",
"actual-request-url": "^1.0.4",
"c8": "^7.11.3",
"eslint-config-prettier": "^8.5.0",
"nock": "13.2",
"prettier": "^2.6.2",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.20",
"typescript": "^4.7.4"
},
"optionalDependencies": {
"node-fetch": "^2.6.7"
},
"engines": {
"node": ">=16"
}
}