-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "@zapatran/subscriber-collection",
"version": "1.0.0",
"description": "tiny package to subscribe for events",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.js",
"homepage": "https://github.com/zapatran/subscriber-collection",
"keywords": [
"event",
"subscription"
],
"repository": {
"type": "git",
"url": "[email protected]:zapatran/subscriber-collection.git"
},
"author": {
"name": "Thor Jubera Albo",
"email": "[email protected]"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^26.0.24",
"@types/lodash.remove": "^4.7.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.6.2",
"semantic-release": "^19.0.0",
"ts-jest": "^26.5.6",
"typescript": "^4.6.4"
},
"scripts": {
"test": "jest --coverage",
"commit": "git-cz",
"lint": "eslint \"**/*.{js,ts}\"",
"semantic-release": "semantic-release",
"build": "rm -Rf ./dist && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"lodash.remove": "^4.7.0"
}
}