-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
40 lines (40 loc) · 876 Bytes
/
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
{
"name": "snapline",
"version": "0.0.2",
"description": "Unleash your screenshots stored in Chrome Devtool timeline files",
"author": "Pierre-Marie Dartus <dartus.pierremarie@gmail.com>",
"license": "MIT",
"keywords": [
"chrome",
"devtool",
"timeline",
"screenshot",
"gif"
],
"repository": {
"type": "git",
"url": "https://github.com/pmdartus/snapline/"
},
"main": "index.js",
"bin": {
"snapline": "bin/snapline"
},
"scripts": {
"test": "node example/convert-to-gif.js && npm link && snapline example/loading.json",
"lint": "./node_modules/.bin/standard"
},
"dependencies": {
"fs-promise": "^0.5.0",
"yargs": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"standard": "^6.0.7"
},
"engines": {
"node": ">=4.0"
},
"standard": {
"parser": "babel-eslint"
}
}