generated from rjchow/nod
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.61 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
{
"name": "@govtechsg/opencerts-verify",
"version": "1.0.1",
"description": "Library to verify any opencerts document",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/OpenCerts/verify.git"
},
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint . --ext js,ts,tsx",
"lint:fix": "npm run lint -- --fix",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "tsc --emitDeclarationOnly && babel src -d dist --ignore src/**/*.spec.ts,src/**/*.test.ts -x .js,.ts,.tsx",
"semantic-release": "semantic-release",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"commitmsg": "commitlint -e",
"commitlint-circle": "commitlint-circle"
},
"types": "dist/ts/src",
"dependencies": {
"@govtechsg/oa-verify": "^8.1.0",
"@govtechsg/open-attestation": "^6.5.1",
"debug": "^4.3.1",
"node-fetch": "^2.6.1",
"runtypes": "^6.3.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/prompt": "^12.1.1",
"@ls-age/commitlint-circle": "^1.0.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/node-fetch": "^2.5.10",
"@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.2.3",
"documentation": "^13.2.5",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"git-cz": "^4.7.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"open-cli": "^6.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"typescript": "^4.2.4"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "node_modules/@commitlint/prompt"
}
},
"prettier": {
"printWidth": 120
}
}