-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "mockeer",
"version": "0.0.5",
"description": "mocking puppeteer network calls",
"main": "src/index.js",
"keywords": [
"puppeteer",
"playback"
],
"author": "Nima Soroush",
"license": "ISC",
"dependencies": {
"check-types": "^7.4.0",
"filenamify": "^2.1.0",
"is-image": "^2.0.0",
"type-detect": "^4.0.8",
"url-parse": "^1.4.4"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --testPathIgnorePatterns=int.test",
"test:integration": "jest --testPathPattern=int.test"
},
"repository": {
"type": "git",
"url": "[email protected]:NimaSoroush/mockeer.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "7.11.0",
"jest": "^23.5.0",
"jest-cli": "^23.6.0",
"jsdoc": "^3.4.3",
"puppeteer": "^1.12.2"
},
"jest": {
"rootDir": "src",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"engines": {
"node": ">=8.9"
}
}