-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 896 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 896 Bytes
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
{
"name": "api-testing",
"version": "1.0.0",
"description": "An example API testing repo against public APIs",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"lint-fix": "npm run lint -- --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mwallace72/api-testing.git"
},
"author": "Morgan Wallace",
"license": "ISC",
"bugs": {
"url": "https://github.com/mwallace72/api-testing/issues"
},
"homepage": "https://github.com/mwallace72/api-testing#readme",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"got": "^11.8.3",
"jest": "^27.5.0",
"prettier": "^2.5.1"
}
}