-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
80 lines (80 loc) · 1.84 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": "backstop-crawl",
"version": "2.3.1",
"description": "Crawl a site to generate a backstopjs config",
"repository": "https://github.com/fffunction/backstop-crawl",
"homepage": "https://github.com/fffunction/backstop-crawl",
"main": "index.js",
"bin": {
"backstop-crawl": "./index.js"
},
"scripts": {
"test": "xo && nyc ava",
"prettier": "prettier --single-quote --trailing-comma=es5 --bracket-spacing --tab-width 4 --write `find ./lib -name '*.js'` `find ./test -name '*.js'`",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"extends": "prettier"
},
"keywords": [
"backstopjs",
"backstop",
"crawl",
"crawler",
"config",
"generator",
"regression",
"test"
],
"files": [
"lib",
"index.js"
],
"author": {
"name": "Dan Reeves",
"email": "[email protected]",
"url": "https://danreev.es"
},
"contributors": [
{
"name": "Dan Reeves",
"email": "[email protected]",
"url": "https://danreev.es"
}
],
"bugs": {
"url": "https://github.com/fffunction/backstop-crawl/issues"
},
"license": "MIT",
"dependencies": {
"chalk": "1.1.3",
"cheerio": "^1.0.0-rc.2",
"cli-truncate": "1.0.0",
"jsonfile": "^3.0.0",
"meow": "3.7.0",
"mkpath": "1.0.0",
"normalize-url": "^1.9.1",
"object.entries": "1.0.4",
"ora": "^1.3.0",
"simplecrawler": "^1.1.3",
"update-notifier": "^2.2.0",
"url-parse": "^1.1.9",
"valid-url": "1.0.9"
},
"devDependencies": {
"array-includes": "^3.0.3",
"ava": "^0.20.0",
"coveralls": "^2.13.1",
"eslint-config-prettier": "^2.2.0",
"execa": "^0.7.0",
"live-server": "1.2.0",
"nyc": "^11.0.3",
"path-exists": "3.0.0",
"pify": "^3.0.0",
"prettier": "^1.5.2",
"xo": "^0.18.2"
},
"engines": {
"node": ">=4"
}
}