-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "@joshmakar/nhtsa",
"version": "0.0.0-semantic-release",
"description": "Fetch and parse vehicle data from the NHTSA Vehicle API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/joshmakar/nhtsa.git"
},
"bugs": {
"url": "https://github.com/joshmakar/nhtsa/issues"
},
"homepage": "https://github.com/joshmakar/nhtsa#readme",
"scripts": {
"build": "tsup",
"test": "mocha --require ts-node/register test/**/*.ts",
"prepare": "husky"
},
"author": "Josh Makar",
"license": "ISC",
"keywords": [
"nhtsa",
"vin decoder",
"vin lookup"
],
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/sinon": "^17.0.3",
"chai": ">= 2.1.2 < 5",
"chai-as-promised": "^7.1.1",
"husky": "^9.0.11",
"mocha": "^10.3.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.7"
}
}