This repository has been archived by the owner on Jun 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.61 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
60
61
62
{
"name": "node-fest",
"version": "2.0.33",
"description": "The best productive test framework",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dipankar08/simplewebtest.git"
},
"keywords": [
"Hello",
"Greeter"
],
"author": "DIPANKAR",
"license": "ISC",
"bugs": {
"url": "https://github.com/dipankar08/simplewebtest/issues"
},
"homepage": "https://github.com/dipankar08/simplewebtest#readme",
"devDependencies": {
"jest": "^26.1.0",
"prettier": "^2.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@types/chai": "^4.2.11",
"@types/selenium-webdriver": "^4.0.9",
"@types/underscore": "^1.10.7",
"@types/ws": "^7.4.0",
"chalk": "^4.1.0",
"chromedriver": "^87.0.2",
"commander": "^6.0.0",
"geckodriver": "^1.20.0",
"micromustache": "^7.1.0",
"named-js-regexp": "^1.3.5",
"node-dutils": "^1.0.9",
"selenium-webdriver": "^4.0.0-alpha.7",
"string-format": "^2.0.0",
"sync-request": "^6.1.0",
"unique-string": "^2.0.0"
},
"bin": {
"fest_web": "lib/web/web.js",
"fest_api": "lib/api/api.js"
}
}