-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "docker-chromium",
"version": "1.4.2",
"description": "Node library for controlling a Chromium instance running in a Docker container",
"main": "lib/index.js",
"scripts": {
"lint": "eslint **/*.js --fix --ignore-pattern node_modules",
"prettier": "prettier --write --single-quote --tab-width=4 */**.js",
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --tab-width=4",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gidztech/docker-chromium.git"
},
"author": "Gideon Pyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/gidztech/docker-chromium/issues"
},
"homepage": "https://github.com/gidztech/docker-chromium#readme",
"devDependencies": {
"@babel/preset-env": "^7.9.0",
"babel-jest": "^25.2.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^1.3.1",
"jest": "^25.2.3",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1"
},
"dependencies": {
"colors": "^1.4.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"directories": {
"lib": "lib"
}
}