-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@sideex/seide2sideex",
"version": "0.9.1",
"author": "SideeX Team <[email protected]>",
"description": "SeleniumIDE2SideeX is a tool for converting Selenium IDE test case files to SideeX 3 test case files. This project is still undergoing and welcome pull requests.",
"main": "cli.js",
"scripts": {
"build": "tsc",
"doconvert": "node bin/cli.js -p",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"start": "npm run build && npm run doconvert",
"prepare": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
},
"license": "Apache-2.0",
"dependencies": {
"@types/fs-extra": "^9.0.11",
"@types/node": "^16.3.0",
"commander": "^8.0.0",
"fs-extra": "^10.0.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.15.3",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.7",
"jest": "^27.0.6",
"path": "^0.12.7",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.5"
},
"files": [
"build/**/*"
],
"bin": {
"seide2sideex": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SideeX/seide2sideex.git"
},
"homepage": "https://sideex.io/",
"keywords": [
"Sideex",
"SeleniumIDE",
"cli"
]
}