-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@brodao/act-jest-snapshot-console",
"version": "1.0.5",
"description": "Captura a saída de 'console.log ()' e incorpora-o ao instantâneo de um teste baseado em JEST",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/brodao/act-jest-snapshot-console",
"repository": {
"type": "git",
"url": "https://github.com/brodao/act-jest-snapshot-console.git"
},
"author": {
"name": "Alan Cândido",
"email": "[email protected]",
"url": "https://github.com/brodao"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"contributors": [],
"keywords": [
"jest",
"jest-snapshot-serializer",
"console"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,tests}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prebuild": "npm run clean && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"------": "",
"test": "jest",
"test:snapshot": "npm test -- -u",
"test:coverage": "jest --coverage",
"-------": "",
"prepare": "npm run format && npm run lint && npm run build && npm run test",
"release": "standard-version",
"release:rc": "npm run release -- --prerelease rc",
"tag": "git push --follow-tags",
"prepublishOnly": "npm run test",
"publish": "npm publish",
"--------": "",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"all-contributors-cli": "^6.20.0",
"husky": "^7.0.4",
"jest": "27.5.1",
"prettier": "2.5.1",
"standard-version": "9.3.2",
"ts-jest": "27.1.3",
"tslint": "6.1.3",
"tslint-plugin-prettier": "2.3.0",
"typescript": "4.5.5"
},
"engines": {
"node": ">=10.0.0"
},
"jest": {
"preset": "ts-jest",
"snapshotSerializers": [
"act-jest-snapshot-console"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"funding": [
{
"type": "individual",
"url": "http://mpago.la/1sWXCjq"
},
{
"type": "individual",
"url": "https://www.mercadopago.com.br/checkout/v1/redirect?pref_id=265489088-d6ac3c3d-26ec-4b32-9e61-1a6f67f46880"
},
{
"type": "individual",
"url": "https://pagseguro.uol.com.br/checkout/nc/nl/donation/sender-identification.jhtml?t=ed1ce6a52728d7cc3f98b07dd597573b7db955e85faff6ff5da31c3d3b58266b&e=true#rmcl"
}
]
}