generated from rjchow/nod
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
93 lines (93 loc) · 2.69 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
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
{
"name": "@govtechsg/dnsprove",
"version": "0.0.0-development",
"description": "Helper utility for retrieving OpenAttestations document store address records from DNS",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Open-Attestation/dnsprove.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"author": {
"name": "RJ Chow",
"email": "[email protected]",
"url": "https://github.com/rjchow"
},
"files": [
"dist",
"src"
],
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"lint": "eslint . --ext js,ts,tsx",
"lint:fix": "npm run lint -- --fix",
"docs": "documentation readme src/index.ts --section=API --document-exported --babel=./.babelrc --parse-extension=ts",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "npm run build:esm && npm run build:cjs && npm run build:type",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:type": "tsc -d --emitDeclarationOnly --outDir dist/types",
"preversion": "npm run lint && npm test && npm run build",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix --ext js,ts,tsx",
"git add"
]
},
"keywords": [
"generator-nod"
],
"dependencies": {
"axios": "^1.6.3",
"debug": "^4.3.1",
"runtypes": "^6.7.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/prompt": "^18.4.3",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"commitizen": "^4.3.0",
"documentation": "^14.0.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"msw": "0.35.0",
"open-cli": "^7.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^22.0.8",
"ts-jest": "^26.5.5",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
}
}