-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.57 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
{
"name": "emoji-log",
"version": "1.0.2",
"description": "Log to console with emojis 🦄",
"license": "MIT",
"repository": "https://github.com/abhijithvijayan/emoji-log.git",
"author": {
"name": "abhijithvijayan",
"email": "34790378+abhijithvijayan@users.noreply.github.com",
"url": "https://abhijithvijayan.in"
},
"engines": {
"node": ">=10.0.0"
},
"main": "lib/index.js",
"types": "lib",
"files": [
"lib",
"browser.png",
"node.png"
],
"scripts": {
"dev": "tsc --watch",
"build": "rimraf lib && tsc",
"pack:list": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "yarn build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn run lint:fix"
]
},
"keywords": [
"console",
"log",
"error",
"emoji",
"emoji-log"
],
"dependencies": {},
"devDependencies": {
"@abhijithvijayan/eslint-config": "1.3.1",
"@abhijithvijayan/tsconfig": "^1.1.2",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
}
}