-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
29 lines (29 loc) · 1.38 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
{
"name": "paybutton",
"version": "3.0.2",
"description": "The easiest way to accept eCash online",
"author": "Blockchain Ventures Corp.",
"main": "index.js",
"repository": "https://github.com/PayButton/paybutton.git",
"license": "MIT",
"scripts": {
"dev": "cd paybutton && yarn dev",
"predev": "[ -f ./paybutton-config.json ] || cp ./example-config.json ./paybutton-config.json",
"prebuild": "[ -f ./paybutton-config.json ] || cp ./example-config.json ./paybutton-config.json",
"pretest": "[ -f ./paybutton-config.json ] || cp ./example-config.json ./paybutton-config.json",
"build:dev": "yarn build:react && yarn dev",
"watch": "(cd paybutton && yarn dev) & (cd react && yarn dev)",
"test": "cd react && yarn test",
"test:coverage": "cd react && yarn test:coverage",
"build:react": "cd react && yarn && yarn build",
"build:paybutton": "cd paybutton && yarn && yarn build",
"start:paybutton": "cd paybutton && yarn && yarn start",
"build": "yarn build:react && yarn build:paybutton",
"start:docs": "cd docs && yarn && yarn serve",
"clean:react": "rm -rf react/node_modules react/dist",
"build:react:clean": "yarn clean:react && yarn build:react",
"clean:paybutton": "rm -rf paybutton/node_modules paybutton/dist",
"clean:app": "yarn clean:react && yarn clean:paybutton",
"clean:build": "yarn clean:app && yarn build"
}
}