-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 823 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": "node-patterns",
"version": "1.0.0",
"description": "Estudos sobre patterns",
"main": "index.js",
"type": "module",
"scripts": {
"test": "mocha --recursive ./test/",
"test:report": "c8 --reporter=text mocha --recursive ./test/",
"test:html": "c8 --reporter=html mocha --recursive ./test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RazielMiranda/node-patterns.git"
},
"keywords": [
"raziel",
"node",
"patterns"
],
"author": "Raziel Rodrigues",
"license": "ISC",
"bugs": {
"url": "https://github.com/RazielMiranda/node-patterns/issues"
},
"homepage": "https://github.com/RazielMiranda/node-patterns#readme",
"dependencies": {
"c8": "^7.12.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"sinon": "^15.0.1"
}
}