-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
108 lines (108 loc) · 2.35 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "orca",
"version": "1.3.1",
"description": "Plotly's image-exporting utilities",
"license": "MIT",
"main": "./bin/orca_electron.js",
"bin": {
"orca": "./bin/orca.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",
"pack": "cross-env NODE_ENV=production electron-builder --publish=never",
"postshrinkwrap": "chttps ."
},
"build": {
"appId": "com.plotly.orca",
"productName": "orca",
"files": [
"bin",
"src"
],
"asar": false,
"linux": {
"category": "Utility",
"executableName": "orca",
"maintainer": "[email protected]",
"target": [
"appimage"
]
},
"win": {
"target": [
"nsis"
]
},
"mac": {
"category": "public.app-category.tools",
"extendInfo": {
"LSUIElement": 1
},
"target": [
"dmg"
]
},
"directories": {
"output": "release"
}
},
"author": "Plotly, Inc.",
"keywords": [
"graphing",
"plotting",
"visualization",
"plotly"
],
"dependencies": {
"body": "^5.1.0",
"fast-isnumeric": "^1.1.3",
"file-type": "^10.11.0",
"get-stdin": "^5.0.1",
"glob": "^7.1.6",
"is-plain-obj": "^1.1.0",
"is-url": "^1.2.4",
"jsdom": "11.12.0",
"minimist": "^1.2.0",
"pngjs": "^3.4.0",
"read-chunk": "^3.2.0",
"request": "^2.88.0",
"run-parallel": "^1.1.9",
"run-parallel-limit": "^1.0.5",
"run-series": "^1.1.8",
"semver": "^5.7.1",
"string-to-stream": "^1.1.1",
"tinycolor2": "^1.4.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"axios": "^0.21.1",
"chttps": "^1.0.6",
"cross-env": "^5.2.1",
"delay": "^4.3.0",
"devtron": "^1.4.0",
"electron": "^6.1.7",
"electron-builder": "^21.2.0",
"electron-debug": "^3.0.0",
"image-size": "^0.6.3",
"sinon": "^7.5.0",
"snazzy": "^8.0.0",
"spectron": "^8.0.0",
"standard": "^12.0.1",
"tap": "^12.7.0"
},
"engines": {
"node": ">=6.0.0"
},
"nyc": {
"exclude": [
"build",
"test"
]
}
}