-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (38 loc) · 1.19 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
{
"name": "pdump",
"version": "0.1.2",
"description": "A tool to dump data from a pdk.io cloud system",
"main": "src/index.js",
"scripts": {
"prebuild": "mkdir -p dist; cp package.json dist && cp -aR src dist && cd dist && npm i --production",
"build": "npm run build:win-x64",
"prebuild:win-x64": "cp dump.bat dist && mkdir -p dist/win-x64; cd dist/win-x64 && curl https://nodejs.org/dist/latest-v10.x/win-x64/node.exe -O",
"build:win-x64": "cd dist && zip -r paneldump-0.1.1-win-x64.zip dump.bat win-x64/node.exe node_modules src",
"lint": "eslint src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prodatakey/paneldump.git"
},
"author": "Joshua Perry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/prodatakey/paneldump/issues"
},
"homepage": "https://github.com/prodatakey/paneldump#readme",
"esm": {
"await": true
},
"dependencies": {
"@pdk/client": "^0.7.0",
"asyncp": "^0.8.0",
"esm": "^3.2.22",
"lodash": "^4.17.11",
"ora": "^3.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.14.0"
}
}