-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "scribere",
"version": "1.1.5",
"description": "Logger core to be used in Javascript application",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"dist"
],
"author": "Ricardo Vega Alonso <[email protected]>",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"semantic-release": "^17.1.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ricveal/scribere.git"
}
}