-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"name": "@pliancy/duo-sdk",
"version": "1.4.0",
"main": "dist/index.js",
"license": "MIT",
"description": "Duo SDK for Node.js",
"private": false,
"dependencies": {
"axios": "1.6.7",
"tslib": "2.6.2"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/pliancy/duo-sdk"
},
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "8.0.1",
"@pliancy/eslint-config-ts": "1.1.1",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.26",
"commitizen": "4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-mock-axios": "4.7.3",
"npm-run-all2": "5.0.2",
"pinst": "3.0.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.2",
"typescript": "5.4.2"
},
"scripts": {
"build": "run-s -l clean test tsc",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"qa": "run-s -l lint test clean build:check",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json"
},
"engines": {
"node": ">=14"
},
"author": {
"name": "Santese",
"email": "[email protected]"
},
"volta": {
"node": "20.11.1",
"yarn": "1.22.22"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false
}
}
}