-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "get-some-cool-emojis",
"version": "3.2.3",
"description": "🏭 Just generate some random Emojis 🎉✨🔧🐛💩",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"gen:emojis": "node scripts/gen-emojis",
"build": "npm run gen:emojis && webpack -p && cp src/index.d.ts dist && rm src/__EMOJIS__.js",
"test": "npm run build && jest",
"lint": "eslint --fix --ignore-path .gitignore src",
"release": "sh scripts/release.sh",
"deploy:demo": "sh scripts/deploy.sh",
"dev:demo": "npm -C demo run dev"
},
"keywords": [
"emoji",
"emojis",
"cool",
"random"
],
"author": "Michael Wang 汪東陽 <[email protected]> (https://github.com/EastSun5566)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EastSun5566/get-some-cool-emojis/"
},
"homepage": "https://eastsun5566.github.io/get-some-cool-emojis/",
"bugs": {
"url": "https://github.com/EastSun5566/get-some-cool-emojis/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.20",
"@unicode/unicode-15.0.0": "^1.3.1",
"babel-loader": "^8.2.2",
"emoji-regex": "^9.2.0",
"eslint": "^6.7.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.1.0",
"jest": "^29.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^3.3.10"
}
}