-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 1.37 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": "action_package_template",
"version": "1.0.0",
"description": "action package template",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"preinstall": "node -e 'if(!/yarn\\.js$/.test(process.env.npm_execpath))throw new Error(\"Please use yarn instead\")'",
"postinstall": "git config core.hooksPath ./node_modules/@clay-run/clay-action-client/hooks",
"action": "./node_modules/@clay-run/clay-action-client/clay_runner.js",
"deploy:local": "GIT_DIFF=$(git diff-index --name-only HEAD) GIT_BRANCH=$(git symbolic-ref -q HEAD) ENV=local ./node_modules/@clay-run/clay-action-client/clay_deploy.js",
"deploy:staging": "GIT_DIFF=$(git diff-index --name-only HEAD) GIT_BRANCH=$(git symbolic-ref -q HEAD) ENV=staging ./node_modules/@clay-run/clay-action-client/clay_deploy.js",
"deploy": "GIT_DIFF=$(git diff-index --name-only HEAD) GIT_BRANCH=$(git symbolic-ref -q HEAD) ./node_modules/@clay-run/clay-action-client/clay_deploy.js",
"login:local": "ENV=local ./node_modules/@clay-run/clay-action-client/clay_login.js",
"login:staging": "ENV=staging ./node_modules/@clay-run/clay-action-client/clay_login.js",
"login": "./node_modules/@clay-run/clay-action-client/clay_login.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@clay-run/clay-action-client": "1.x",
"superagent": "^5.2.2"
}
}