-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "puppeteer-pool",
"version": "1.0.0",
"description": "Resource pool for Node.js Puppeteer",
"main": "dist/index.js",
"types": "dist/index.js",
"scripts": {
"lint": "tslint lib/*",
"build": "tsc",
"pretest": "npm run lint",
"test": "jest",
"test:cov": "jest --coverage",
"benchmark": "ts-node ./lib/benchmark.ts",
"semantic-release": "git push && npm test && semantic-release pre && npm run build && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andantonyan/puppeteer-pool.git"
},
"keywords": [
"puppeteer",
"generic-pool",
"pool",
"pooling"
],
"author": "Andranik Antonyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/andantonyan/puppeteer-pool/issues"
},
"homepage": "https://github.com/andantonyan/puppeteer-pool#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/generic-pool": "^3.1.2",
"@types/jest": "^21.1.8",
"@types/node": "^9.3.0",
"@types/puppeteer": "^1.2.0",
"jest": "^22.4.3",
"semantic-release": "^17.2.3",
"ts-jest": "^22.4.2",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.8.1"
},
"dependencies": {
"generic-pool": "^3.4.2",
"puppeteer": "^1.2.0"
},
"jest": {
"forceExit": true,
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
}
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"engines": {
"node": ">=6"
}
}