-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.16 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
{
"name": "@runsidekick/sidekick-agent-nodejs-root",
"version": "1.0.0",
"description": "Sidekick node.js agent",
"main": "index.js",
"scripts": {
"test": "lerna exec npm run test",
"postinstall": "lerna bootstrap --hoist --ignore-scripts",
"clean:all": "lerna run --parallel clean",
"build:all": "lerna exec npm run build",
"clean-build:all": "npm-run-all -p clean:all -s build:all",
"prerelease": "lerna version ${RELEASE_SCALE} --no-push --exact --yes",
"release": "lerna publish from-package --ignore-scripts --no-verify-access --yes",
"postrelease": "git push --follow-tags origin"
},
"devDependencies": {
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runsidekick/sidekick-agent-nodejs.git"
},
"keywords": [],
"author": "Sidekick Team",
"license": "AGPL",
"bugs": {
"url": "https://github.com/runsidekick/sidekick-agent-nodejs/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/runsidekick/sidekick-agent-nodejs#readme"
}