-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
84 lines (84 loc) · 1.95 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
84
{
"name": "deviceframe",
"version": "2.0.0",
"description": "Frame app screenshots inside a device",
"main": "index.js",
"bin": {
"deviceframe": "cli.js",
"dframe": "cli.js"
},
"scripts": {
"lint": "xo",
"test": "xo && nyc ava",
"frames": "npm run update-frames && npm run upload-frames",
"update-frames": "node scripts/parse-frames",
"upload-frames": "echo \"THIS IS DEPRECATED AND UNNECESSARY\" && node scripts/upload-frames"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/c0bra/deviceframe.git"
},
"keywords": [
"screenshot",
"mobile",
"app",
"frame",
"device"
],
"author": "Brian Hann",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/c0bra/deviceframe/issues"
},
"homepage": "https://github.com/c0bra/deviceframe#readme",
"dependencies": {
"chalk": "^2.1.0",
"conf": "^1.3.0",
"env-paths": "^1.0.0",
"fuse.js": "^3.2.0",
"get-stream": "^3.0.0",
"globby": "^6.1.0",
"got": "^7.1.0",
"inquirer": "^3.3.0",
"inquirer-autocomplete-prompt": "^0.11.1",
"is-stream": "^1.1.0",
"is-url-superb": "^2.0.0",
"jimp": "^0.2.28",
"lodash": "^4.17.4",
"log-symbols": "^2.0.0",
"meow": "^5.0.0",
"mkdirp": "^0.5.1",
"ora": "^1.3.0",
"progress": "^2.0.0",
"puppeteer": "^1.5.0",
"screenshot-stream": "^4.2.0",
"type-is": "^1.6.15"
},
"devDependencies": {
"ava": "^0.22.0",
"aws-sdk": "^2.213.1",
"deviceframe-frames": "https://github.com/c0bra/deviceframe-frames.git#2.0.1",
"nyc": "^11.2.1",
"prettier": "1.16.4",
"recursive-readdir": "^2.2.2",
"xo": "^0.18.2"
},
"xo": {
"space": 2,
"rules": {
"capitalized-comments": 0,
"curly": [
"error",
"multi-line"
],
"object-curly-spacing": [
"error",
"always"
],
"comma-dangle": [
"error",
"always-multiline"
]
}
}
}