-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "dnsimple",
"version": "9.0.0",
"description": "A Node.JS client for the DNSimple API.",
"keywords": [
"dnsimple",
"domains",
"dns",
"domain management",
"ssl certificates"
],
"homepage": "https://github.com/dnsimple/dnsimple-node",
"author": "DNSimple <support@dnsimple.com> (https://dnsimple.com/)",
"contributors": [
"Anthony Eden <anthony.eden@dnsimple.com>"
],
"repository": {
"type": "git",
"url": "git://github.com/dnsimple/dnsimple-node.git"
},
"bugs:": "https://github.com/dnsimple/dnsimple-node/issues",
"engines": {
"node": ">= v18.0.0"
},
"main": "dist/lib/main.js",
"files": [
"dist"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"fetch-mock": "^11.1.5",
"jest": "^29.7.0",
"prettier": "3.4.1",
"prettier-plugin-organize-imports": "4.1.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"license": "MIT",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"format": "prettier -w '*.{js,json}' '{lib,test}/**/*.ts'",
"format-check": "prettier --check '*.{js,json}' '{lib,test}/**/*.ts'",
"test": "jest"
}
}