-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"author": {
"name": "Josh Stout",
"email": "joshstout@gmail.com"
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira",
"skipScope": false
}
},
"dependencies": {
"axios": "1.6.7"
},
"description": "SDK for timelyapp.com API",
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "6.8.0",
"@pliancy/eslint-config-ts": "1.1.0",
"@pliancy/semantic-release-config-npm": "2.2.0",
"@types/jest": "29.5.12",
"commitizen": "4.3.0",
"cpy-cli": "5.0.0",
"husky": "9.0.11",
"jest": "29.7.0",
"npm-run-all2": "5.0.0",
"pinst": "3.0.0",
"rimraf": "5.0.5",
"semantic-release": "23.0.2",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.2"
},
"engines": {
"node": ">=12"
},
"keywords": [],
"license": "MIT",
"main": "index.js",
"name": "timelyapp",
"repository": {
"type": "git",
"url": "https://github.com/pliancy/timelyapp-sdk"
},
"scripts": {
"build": "run-s -l clean test tsc copy",
"build:check": "tsc --noEmit",
"clean": "rimraf coverage dist tmp",
"copy": "pinst --disable && cpy package.json dist && cpy README.md dist && pinst --enable",
"lint": "eslint \"src/**/*.ts\" --fix",
"postinstall": "husky install",
"qa": "run-s -l lint test clean build:check",
"semantic-release": "semantic-release",
"test": "jest",
"tsc": "tsc -p tsconfig.build.json"
},
"types": "index.d.ts",
"version": "6.1.0",
"volta": {
"node": "20.11.1",
"yarn": "1.22.21"
}
}