-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
67
68
{
"name": "good-vibes",
"version": "1.4.0",
"description": "Good Vibes is a Node.js testing library inspired by Alicia Keys Tiny Desk Concert",
"main": "./lib/src/index.js",
"types": "./typings/src/index.d.ts",
"type": "commonjs",
"files": [
"src/*",
"lib/src/*",
"typings/src/*"
],
"engines": {
"node": ">=16"
},
"scripts": {
"prettier": "prettier --ignore-path .gitignore --write .",
"lint": "eslint --ignore-path .gitignore .",
"build": "npm run lint && tsc",
"test": "npm run build && node lib/test/all.test.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"coverage-codecov": "npm run coverage && codecov",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/subramanian-elavathur/good-vibes.git"
},
"keywords": [
"good-vibes",
"good",
"vibes",
"alicia",
"keys",
"nodejs",
"testing",
"test",
"tests",
"library",
"testing-library"
],
"author": "Subramanian Elavathur",
"license": "MIT",
"bugs": {
"url": "https://github.com/subramanian-elavathur/good-vibes/issues"
},
"lint-staged": {
"**/*": "npm run prettier"
},
"homepage": "https://github.com/subramanian-elavathur/good-vibes#readme",
"devDependencies": {
"@types/node": "^18.7.13",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"codecov": "^3.8.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nyc": "^15.1.0",
"prettier": "2.7.1",
"typescript": "^4.3.5"
},
"dependencies": {
"diff": "^5.0.0",
"lodash.isequal": "^4.5.0"
}
}