forked from samrum/OnStarJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.98 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": "onstarjs",
"version": "2.1.1",
"description": "Unofficial package for making OnStar API requests",
"main": "dist/index.js",
"module": "dist/index.mjs",
"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": "yarn run test && yarn run build",
"prerelease": "yarn run test && yarn run build",
"release": "standard-version --sign",
"test": "yarn run test:unit && yarn run 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}": [
"prettier --write"
]
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/samrum/OnStarJS.git"
},
"keywords": [
"onstar",
"chevrolet",
"chevy",
"gm",
"gmc",
"buick",
"cadillac"
],
"author": "Ruben Medina <dev@rubenmedina.com> (https://rubenmedina.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/samrum/OnStarJS/issues"
},
"homepage": "https://github.com/samrum/OnStarJS#readme",
"dependencies": {
"axios": "^0.21.1",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.3.2",
"@types/uuid": "^8.3.0",
"dotenv": "^8.2.0",
"husky": "^6.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"rollup": "^2.45.2",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.1.0",
"ts-jest": "^26.1.0",
"ts-mockito": "^2.3.1",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"peerDependencies": {}
}