-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
89 lines (89 loc) · 2.18 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
88
89
{
"name": "onstarjs",
"version": "2.5.3",
"description": "Unofficial package for making OnStar API requests",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf dist && rollup -c",
"dev": "rm -rf dist && rollup -c -w",
"lint": "prettier --write .",
"prepublishOnly": "pnpm run build",
"release": "standard-version --sign",
"test": "pnpm test:unit && pnpm test:functional",
"test:unit": "jest test/unit",
"test:coverage": "jest test/unit --coverage",
"test:functional": "jest test/functional",
"test:keys": "jest test/functional -t 'Unupgraded Command Successful'",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,md,yml}": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"standard-version": {
"scripts": {
"prerelease": "pnpm test:unit && pnpm build"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/samrum/OnStarJS.git"
},
"keywords": [
"onstar",
"chevrolet",
"chevy",
"gm",
"gmc",
"buick",
"cadillac"
],
"author": "Ruben Medina <[email protected]> (https://rubenmedina.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samrum/OnStarJS/issues"
},
"homepage": "https://github.com/samrum/OnStarJS#readme",
"dependencies": {
"axios": "^1.3.6",
"jsonwebtoken": "^9.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/uuid": "^9.0.1",
"dotenv": "^16.0.3",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "3.3.3",
"rollup": "^3.21.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"ts-mockito": "^2.6.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
}
}