forked from asaucedormz/myadmin-geotab-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"author": {
"name": "David Sabine",
"email": "[email protected]",
"url": "https://github.com/davidsabine"
},
"dependencies": {
"axios": "^0.24.0"
},
"description": "Forked from https://github.com/asaucedormz/myadmin-geotab-api, then modified to use axios instead of old version of node-fetch.",
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.10",
"babel-jest": "^27.4.6",
"dotenv": "^10.0.0",
"jest": "^27.4.7",
"msw": "^0.36.5"
},
"homepage": "https://github.com/DavidSabine/myadmin-geotab-api",
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/__fixtures__/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/test/__fixtures__/"
],
"transform": {
"\\.[jt]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/"
]
},
"license": "MIT",
"main": "src/index.js",
"name": "@davidsabine/myadmin-geotab-api",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "jest --coverage --setupFiles dotenv/config"
},
"version": "2.0.2"
}