This repository has been archived by the owner on Nov 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 575
/
package.json
80 lines (80 loc) · 2.13 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
{
"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",
"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.177.0",
"bluebird": "^3.5.1",
"chrome-launcher": "^0.10.0",
"chrome-remote-interface": "^0.25.5",
"cuid": "^2.1.0",
"form-data": "^2.3.1",
"got": "^8.0.0",
"mqtt": "^2.15.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.0.0",
"@types/bluebird": "^3.5.19",
"@types/cuid": "^1.3.0",
"@types/node": "^10.0.3",
"ava": "^0.25.0",
"commitlint": "^7.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"nyc": "^12.0.2",
"prettier": "1.11.1",
"rimraf": "^2.6.2",
"semantic-release": "^15.0.2",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts}": [
"prettier --parser typescript --no-semi --single-quote --trailing-comma all --write",
"tslint",
"git add"
],
"*.{js}": [
"prettier --no-semi --single-quote --trailing-comma all --write",
"lint",
"git add"
]
}
}