forked from schickling/chromeless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.14 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
{
"name": "chromeless",
"version": "1.4.0",
"description": "🖥 Chrome automation made simple. Runs locally or headless on AWS Lambda.",
"homepage": "https://github.com/graphcool/chromeless",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/graphcool/chromeless.git"
},
"bug": {
"url": "https://github.com/graphcool/chromeless/issues"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">= 6.10.0"
},
"scripts": {
"ava": "tsc -d && nyc ava",
"build": "npm run clean && tsc -d",
"clean": "rimraf dist",
"coverage": "npm run ava",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"prepublishOnly": "npm test && npm run build",
"prettier": "prettier --list-different --write \"**/*.{ts,json}\"",
"test": "npm run lint && npm run ava",
"lint": "npm run prettier && npm run tslint",
"tslint": "tslint -c tslint.json -p tsconfig.json --exclude node_modules/**",
"watch": "tsc -w",
"watch:test": "tsc -d -w & ava --watch",
"semantic-release": "semantic-release"
},
"dependencies": {
"aws-sdk": "^2.90.0",
"bluebird": "^3.5.0",
"chrome-launcher": "^0.10.0",
"chrome-remote-interface": "^0.25.1",
"cuid": "^1.3.8",
"form-data": "^2.1.4",
"got": "^8.0.0",
"mqtt": "^2.9.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^5.2.3",
"@types/bluebird": "^3.5.8",
"@types/cuid": "^1.3.0",
"@types/node": "^8.0.15",
"ava": "^0.24.0",
"commitlint": "^5.2.5",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"nyc": "^11.1.0",
"prettier": "1.9.2",
"rimraf": "^2.6.1",
"semantic-release": "^11.0.2",
"tslint": "^5.5.0",
"typescript": "^2.4.2"
},
"release": {
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js}": [
"prettier --no-semi --single-quote --trailing-comma all --write",
"git add"
]
}
}