generated from gabrielrufino/node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 917 Bytes
/
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
{
"name": "@gabrielrufino/node-template",
"version": "1.0.0",
"description": "An incredible project made in Node.js",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:cov": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"prepare": "husky"
},
"author": "Gabriel Rufino <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^8.4.1",
"@gabrielrufino/eslint-config": "^1.6.0",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^29.7.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/gabrielrufino"
}
]
}