-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
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
37
38
39
40
41
42
43
{
"name": "seleniumlibraryextends",
"version": "1.0.0",
"description": "Selenium library keyword extension to support Behavior Driven Development",
"main": "index.js",
"scripts": {
"commit": "cz",
"install_library": "python setup.py install",
"package_library": "python setup.py sdist bdist_wheel",
"freeze": "pip freeze > uninstall.txt",
"uninstall_library": "npm run freeze && pip uninstall -r uninstall.txt -y",
"clean": "rimraf build dist results src/robotframework_seleniumlibraryextends.egg-info",
"build_prod": "npm run clean && npm run package_library",
"build_dev": "npm run clean && npm run uninstall_library && npm run install_library"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbspt/SeleniumLibraryExtends.git"
},
"keywords": [
"robotframework",
"seleniumlibrary"
],
"author": {
"name": "Cléverson Sampaio",
"email": "cleverson@sampaio.dev.br"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dbspt/SeleniumLibraryExtends/issues"
},
"homepage": "https://github.com/dbspt/SeleniumLibraryExtends#readme",
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"rimraf": "^3.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}