forked from mcdcorp/opentest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 1.04 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
{
"name": "opentest-master",
"version": "1.4.1",
"description": "Functional test automation framework for web, mobile and REST APIs",
"author": "Adrian Theodorescu",
"homepage": "https://getopentest.org/",
"license": "MIT",
"private": true,
"scripts": {
"build": "npm-run-all pull-projects build-projects make-modules",
"pull-projects": "node build/tasks/pull-projects.js",
"build-projects": "node build/tasks/build-projects.js",
"make-modules": "node build/tasks/make-modules.js",
"package": "node build/tasks/package.js",
"publish-local": "node build/tasks/publish-modules.js --registry http://localhost:4873 --tag=latest",
"publish-npm-beta": "node build/tasks/publish-modules.js --tag beta --registry https://registry.npmjs.org",
"publish-npm-latest": "node build/tasks/publish-modules.js --tag=latest --registry https://registry.npmjs.org",
"update-version": "node build/tasks/update-version.js"
},
"dependencies": {
"npm-run-all": "^4.1.1",
"shelljs": "^0.8.4",
"yargs": "^15.1.0"
}
}