-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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
63
64
65
66
{
"name": "@hydre/doubt",
"version": "7.3.1",
"description": "Testing made right",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "node test/doubt.test.js",
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HydreIO/doubt.git"
},
"keywords": [
"test",
"testing",
"assert",
"assertion",
"doubt"
],
"author": "Hydre",
"license": "MIT",
"homepage": "https://hydre.io",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/HydreIO/doubt/issues"
},
"dependencies": {
"colors": "^1.4.0",
"fast-deep-equal": "^3.1.3",
"supports-color": "^9.2.2"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.18.2",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"husky": "4.3.8",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"tap-spec-emoji": "^6.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}