-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "mojodns",
"version": "0.2.4",
"description": "JavaScript client for the MojoDNS API",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"prepare": "yarn build",
"build": "parcel build",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"preversion": "yarn lint && yarn test",
"version": "yarn format && git add -A .",
"postversion": "yarn publish . --new-version %npm_package_version%",
"prepublishOnly": "git push --tags",
"postpublish": "git push && echo \"version %npm_package_version% was successfully released!\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackFenix2/mojodns-js.git"
},
"keywords": [
"mojodns",
"dns",
"api",
"client"
],
"author": "Ernie Francis",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackFenix2/mojodns-js/issues"
},
"homepage": "https://github.com/BlackFenix2/mojodns-js#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.1.1",
"@parcel/transformer-typescript-types": "^2.1.1",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"jest": "^27.4.5",
"parcel": "^2.1.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0"
},
"files": [
"dist/**/*"
]
}