-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "design-pattern-taiko",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register test/*.ts --timeout=60000",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/QA-Learning/design-pattern-taiko.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/QA-Learning/design-pattern-taiko/issues"
},
"homepage": "https://github.com/QA-Learning/design-pattern-taiko#readme",
"dependencies": {
"@types/chai": "^4.2.14",
"@types/faker": "^5.1.5",
"@types/mocha": "^8.0.4",
"@types/supertest": "^2.0.10",
"chai": "^4.2.0",
"esm": "^3.2.25",
"faker": "^4.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"supertest": "^4.0.2",
"taiko": "^1.0.14",
"ts-node": "^9.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"npm run prettier"
]
},
"devDependencies": {
"prettier": "2.0.5",
"typescript": "^4.1.3"
}
}