-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "fbnix",
"version": "1.0.0",
"description": "Agent library for scraping Facebook groups and pages in Node.js",
"repository": "github:justinkalland/fbnix",
"homepage": "https://github.com/justinkalland/fbnix#readme",
"bugs": {
"url": "https://github.com/justinkalland/fbnix/issues"
},
"author": "Justin Kalland <[email protected]>",
"license": "MIT",
"scripts": {
"test": "nyc mocha tests --timeout 15000 --exit",
"test-cache": "mocha tests --timeout 15000 --exit \"--cache=true\"",
"lint": "eslint . || true",
"prerelease": "git checkout master && git pull origin master && npm run lint",
"release": "standard-version",
"prepublishOnly": "npm run test"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"minimist": "^1.2.5",
"puppeteer": "^5.0.0",
"standard-version": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"eslint-config-jk": "^1.6.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"sinon": "^9.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint"
},
"eslintConfig": {
"extends": "jk"
},
"nyc": {
"exclude": [
"tests/support.js"
]
}
}