-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.88 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
59
{
"name": "selenidejs",
"description": "Test-oriented Wrapper for Selenium Webdriver",
"homepage": "https://github.com/KnowledgeExpert/selenidejs",
"version": "1.4.6",
"main": "built/index.js",
"typings": "built/index.d.ts",
"dependencies": {
"@types/fs-extra": "9.0.13",
"@types/selenium-webdriver": "^4.1.20",
"fs-extra": "10.1.0",
"selenium-webdriver": ">=4.10.0",
"typescript": "4.6.4"
},
"devDependencies": {
"@types/jasmine": "3.5.10",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"chromedriver": "^119.0.1",
"coveralls": "3.1.1",
"eslint": "^8.15.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"http-server": "14.1.0",
"husky": "8.0.1",
"jasmine": "4.1.0",
"nyc": "15.1.0",
"typedoc": "0.22.15",
"typedoc-plugin-markdown": "3.12.1"
},
"scripts": {
"clean": "rm -rf ./built",
"compile-test": "npm run clean && tsc --skipLibCheck --project test",
"compile": "npm run clean && tsc --skipLibCheck --project lib",
"compile:watch": "npm run clean && tsc -w --skipLibCheck --project lib",
"startserver": "http-server ./resources -p 4446",
"lint": "eslint ./lib --ext .ts",
"pretest": "npm run compile-test",
"test": "nyc --nycrc-path=./test/.nycrc jasmine --config=./test/jasmine.json",
"build": "npm run lint && npm run test && npm run generateDocs",
"prepublish": "npm run compile",
"generateDocs": "typedoc --theme markdown --mode file --readme none --tsconfig lib/tsconfig.json --out tsdocs --gitRevision master lib"
},
"repository": {
"type": "git",
"url": "git://github.com/KnowledgeExpert/selenidejs.git"
},
"keywords": [
"test",
"testing",
"webdriver",
"webdriverjs",
"selenium"
],
"author": {
"name": "Knowledge Expert SA",
"email": "[email protected]"
},
"license": "Apache-2.0"
}