-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 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
{
"name": "@pliancy/divvy-sdk",
"version": "1.1.0",
"main": "dist/index.js",
"license": "MIT",
"type": "module",
"author": {
"name": "Santese Smith",
"email": "santese@pliancy.com"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pliancy/divvy-sdk.git"
},
"keywords": [
"divvy",
"bill.com"
],
"scripts": {
"build": "tsup",
"check-exports": "attw --pack . ",
"check-format": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"qa": "concurrently 'yarn check-format' 'yarn lint' 'yarn test' 'yarn check-exports' 'yarn ts:lint'",
"semantic-release": "semantic-release",
"test": "vitest run",
"test:watch": "vitest --watch",
"ts:lint": "tsc",
"prepare": "husky"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.2",
"@eslint/js": "9.10.0",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.3.3",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@typescript-eslint/eslint-plugin": "8.5.0",
"@typescript-eslint/parser": "8.5.0",
"commitizen": "4.3.0",
"concurrently": "9.0.0",
"eslint": "9.10.0",
"husky": "9.1.5",
"pinst": "3.0.0",
"prettier": "3.3.3",
"semantic-release": "24.1.1",
"tsup": "8.2.4",
"typescript": "5.6.2",
"typescript-eslint": "8.5.0",
"vitest": "2.0.5"
},
"dependencies": {
"axios": "1.7.7",
"tslib": "2.7.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"volta": {
"node": "20.17.0",
"yarn": "1.22.22"
}
}