-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 KB
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
{
"name": "image-exporter",
"version": "0.0.1",
"description": "Plotly's image exporting utility",
"license": "MIT",
"main": "src/index.js",
"bin": {
"plotly-graph-exporter": "./bin/plotly-graph-exporter.js",
"plotly-export-server": "./bin/plotly-export-server.js"
},
"scripts": {
"pretest": "node test/pretest.js",
"test:lint": "standard | snazzy",
"test:unit": "tap test/unit/*_test.js",
"test:integration": "tap test/integration/*_test.js",
"test": "npm run test:lint && npm run test:unit && npm run test:integration",
"coverage": "npm run test:unit -- --cov",
"lint": "standard --fix"
},
"author": "Plotly, Inc.",
"keywords": [
"graphing",
"plotting",
"visualization",
"plotly"
],
"dependencies": {
"body": "^5.1.0",
"electron": "^1.7.5",
"fast-isnumeric": "^1.1.1",
"get-stdin": "^5.0.1",
"glob": "^7.1.2",
"is-plain-obj": "^1.1.0",
"is-url": "^1.2.2",
"minimist": "^1.2.0",
"request": "^2.81.0",
"run-parallel": "^1.1.6",
"run-parallel-limit": "^1.0.3",
"run-series": "^1.1.4",
"semver": "^5.4.1",
"string-to-stream": "^1.1.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"image-size": "^0.6.1",
"sinon": "^3.2.0",
"snazzy": "^7.0.0",
"spectron": "^3.7.2",
"standard": "^10.0.3",
"tap": "^10.7.2"
},
"engines": {
"node": ">=6.0.0"
},
"nyc": {
"exclude": [
"build",
"test"
]
}
}