-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "bs-puppeteer",
"version": "0.13.0",
"description": "Bucklescript bindings for Puppeteer (headless chrome browser) written in Reason",
"keywords": [
"BuckleScript",
"Puppeteer",
"headless",
"browser",
"scraping"
],
"license": "MIT",
"homepage": "https://github.com/zploskey/bs-puppeteer",
"bugs": "https://github.com/zploskey/bs-puppeteer/issues",
"repository": "github:zploskey/bs-puppeteer",
"author": "Zach Ploskey <[email protected]>",
"main": "src/Puppeteer.re",
"scripts": {
"build": "bsb -make-world",
"clean": "bsb -clean-world",
"lint-staged": "lint-staged",
"precommit": "lint-staged && bsb -clean-world -make-world && jest",
"snap": "bsb -clean-world -make-world && rm -rf snap/* && mkdir -p snap && cp -ar lib/js snap/",
"snap-diff": "bsb -clean-world -make-world && git diff --no-index snap/js lib/js || true",
"start": "bsb -make-world -w",
"test": "bsb -make-world && jest",
"test:ci": "jest --bail --ci",
"test:watch": "jest --watch"
},
"dependencies": {
"puppeteer": "^2.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.5.0",
"bs-platform": "^7.2.2",
"bs-webapi": "^0.15.4",
"husky": "^4.2.3",
"lint-staged": "^10.0.9"
}
}