forked from ricealexander/emoji-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "emoji-list",
"version": "1.0.0",
"description": "A list of GitHub emoji markup, adapted from work by rxavier",
"keywords": [
"Github",
"emoji"
],
"main": "gruntfile.js",
"scripts": {
"alphabetize": "npx grunt alphabetize",
"build": "npx grunt",
"check-api": "npx grunt check-api",
"compare": "npx grunt compare",
"validate": "npx grunt validate"
},
"repository": {
"type": "git",
"url": "git://github.com/ricealexander/emoji-list.git"
},
"homepage": "https://github.com/ricealexander/emoji-list#readme",
"bugs": {
"url": "https://github.com/ricealexander/emoji-list/issues"
},
"author": {
"name": "Alexander Rice",
"email": "[email protected]",
"url": "https://ricealexander.com"
},
"license": "ISC",
"devDependencies": {
"eslint": "^7.3.1",
"eslint-config-webtrinkets": "git://github.com/ricealexander/eslint-config-webtrinkets#1.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^20.1.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2"
},
"dependencies": {
"array-flat-polyfill": "^1.0.1",
"axios": "^0.19.1",
"lodash": "^4.17.15"
}
}