forked from sbs20/scanservjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.23 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
{
"name": "scanservjs",
"version": "2.19.1",
"description": "scanservjs is a simple web-based UI for SANE which allows you to share a scanner on a network without the need for drivers or complicated installation.",
"scripts": {
"clean": "rm -rf ./dist",
"version": "npm i && cd packages/client && npm --allow-same-version --no-git-tag-version version $npm_package_version && cd ../server && npm --allow-same-version --no-git-tag-version version $npm_package_version",
"install": "cd packages/client && npm i --loglevel=error && cd ../server && npm i --loglevel=error",
"lint": "cd packages/server && npm run lint",
"test": "cd packages/server && npm run test",
"build": "npm run clean && cd packages/client && npm run build && cd ../server && npm run build",
"package": "cd packages/server && npm run package",
"verify": "npm run version && npm run lint && npm run test",
"docker-build": "npm run verify && docker build -t scanservjs-image .",
"release": "npm run verify && npm run build && npm run package",
"serve": "cd packages/client && npm run serve"
},
"repository": {
"type": "git",
"url": "https://github.com/sbs20/scanservjs"
},
"author": "Sam Strachan",
"license": "GPL-2.0"
}