-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "wallbox",
"version": "1.0.0",
"description": "Automate the current vartiation with API",
"main": "./scripts/index.js",
"scripts": {
"start": "node scripts/index.js",
"predocs": "cat ./docs/predocs.md > ./README.md",
"docs": "./node_modules/.bin/jsdoc2md ./scripts/* > ./docs/doc.md",
"postdocs": "cat ./docs/doc.md >> ./README.md",
"prebuild": "npm run docs",
"build": "./node_modules/.bin/nexe -t windows-x64-14.15.3 -o ./out/WallBox",
"build-test": "./node_modules/.bin/nexe -t linux-x64-14.15.3 -o ./out/WallBox-test"
},
"author": "Samuel Guillemet",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.1",
"inquirer": "^8.2.4",
"node-fetch": "^2.6.7"
},
"repository": {
"type": "git",
"url": "https://github.com/SamuelGuillemet/WallBox"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jsdoc-to-markdown": "^7.1.1",
"nexe": "^4.0.0-rc.1"
},
"type": "commonjs"
}