-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "fetchception",
"version": "2.0.1",
"description": "fetch mocking",
"main": "index.js",
"scripts": {
"coverage": "jest --config test/jest/jest.config.js --coverage",
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"test": "npm run test-mocha && npm run test-jest && npm run test-integration",
"test-integration": "mocha --opts test/mocha/mocha.integration.opts",
"test-mocha": "mocha --opts test/mocha/mocha.opts",
"test-jest": "jest --config test/jest/jest.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.1",
"jsdom": "^19.0.0",
"mocha": "^7.0.0",
"prettier": "~2.5.0",
"rimraf": "^3.0.0",
"unexpected": "^12.0.0",
"whatwg-fetch": "^3.0.0"
},
"dependencies": {
"messy": "^7.0.0",
"unexpected-messy": "^11.0.0"
}
}