-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
83 lines (83 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "facebook-login-for-robots",
"description": "Facebook Login for robots",
"version": "0.0.0",
"engines": {
"node": ">= 6.0.0"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hfreire/facebook-login-for-robots.git"
},
"author": "Hugo Freire <hugo@exec.sh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hfreire/facebook-login-for-robots/issues"
},
"homepage": "https://github.com/hfreire/facebook-login-for-robots#readme",
"dependencies": {
"bluebird": "3.7.2",
"lodash": "4.17.21",
"perseverance": "1.0.61",
"puppeteer": "9.1.1",
"random-http-useragent": "1.1.33"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"eslint": "6.8.0",
"eslint-config-hfreire": "2.0.7",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-unicorn": "19.0.1",
"jest": "27.3.1",
"npm-merge-driver": "2.3.6",
"pre-git": "3.17.1",
"semantic-release": "17.4.7",
"testdouble": "3.16.3",
"testdouble-jest": "2.0.0",
"snyk": "1.749.0"
},
"config": {
"pre-git": {
"commit-msg": "conventional",
"allow-untracked-files": true
}
},
"jest": {
"setupTestFrameworkScriptFile": "./test/helper.js",
"testMatch": [
"<rootDir>/test/**.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"./test/helper.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
]
},
"snyk": true,
"scripts": {
"eslint": "./node_modules/.bin/eslint --ext .json --ext .js .",
"jest": "./node_modules/.bin/jest",
"snyk:test": "./node_modules/.bin/snyk test",
"snyk:protect": "./node_modules/.bin/snyk protect",
"babel": "mkdir -p lib && ./node_modules/.bin/babel src/ -d lib",
"semantic-release": "./node_modules/.bin/semantic-release",
"clean": "rm -rf lib coverage",
"lint": "npm run eslint",
"prepare": "npm run snyk:protect",
"test": "npm run clean && npm run lint && npm run jest",
"compile": "npm run clean && npm run babel",
"commit": "./node_modules/.bin/commit-wizard",
"prepublish": "npm run compile"
}
}