-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·67 lines (67 loc) · 1.74 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
{
"name": "@agiledigital/idm-ts-types",
"version": "0.0.0-development",
"description": "ForgeRock IDM TypeScript Types",
"homepage": "https://github.com/agiledigital/idm-ts-types",
"bugs": {
"url": "https://github.com/agiledigital/idm-ts-types/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/agiledigital/idm-ts-types.git"
},
"contributors": [
{
"name": "Joel Pearson",
"email": "joel.pearson@gmail.com"
},
{
"name": "Rory Stokes",
"email": "rmstokes@agiledigital.com.au"
}
],
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^12.6.8",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-immutable": "^6.0.1",
"tslint-sonarts": "^1.9.0",
"type-coverage": "^2.1.0",
"typescript": "^4.7.3"
},
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check --watch",
"build:types": "tsc --emitDeclarationOnly --declaration",
"format": "prettier --config .prettierrc.yaml --write \"lib/**/*.ts\" \"bin/**/*.{js,ts}\"",
"lint": "tslint -p tsconfig.json -c tslint.json",
"semantic-release": "semantic-release",
"commit": "cz"
},
"dependencies": {
"camelcase": "^5.3.1",
"config": "^3.2.2",
"lodash": "^4.17.21",
"nunjucks": "^3.2.2"
},
"bin": {
"gen-idm-ts-types": "bin/gen-idm-ts-types.js"
},
"typeCoverage": {
"atLeast": 98
},
"types": "./lib/idm-globals.d.ts",
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}