forked from latesh/puppeteer-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.9 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
{
"name": "puppeteer-pool",
"version": "1.0.3",
"description": "Resource pool for Node.js Puppeteer",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:fast",
"build": "npm run clean && babel ./src --out-dir ./lib --copy-files",
"clean": "rimraf ./lib",
"lint": "eslint src/ test/",
"pretest": "npm run lint",
"test:fast": "babel-tape-runner test/*.test.js",
"test:watch": "nodemon --exec npm -- run --silent test:fast || true",
"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/latesh/puppeteer-pool.git"
},
"keywords": [
"puppeteer",
"generic-pool",
"pool",
"pooling"
],
"author": "Latesh Galia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/latesh/puppeteer-pool/issues"
},
"homepage": "https://github.com/latesh/puppeteer-pool#readme",
"engines": {
"node": ">=6"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"blue-tape": "^1.0.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^4.1.1",
"eslint-config-blockai": "^1.0.3",
"nodemon": "^1.11.0",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"debug": "^2.3.3",
"generic-pool": "^3.1.4",
"puppeteer": "^0.10.2"
}
}