-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 946 Bytes
/
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
{
"name": "emoji-selector",
"version": "1.0.4",
"description": "A HTML custom element implementing the `<emoji-selector>` tag.",
"main": "emoji-selector.js",
"types": "emoji-selector.d.ts",
"scripts": {
"start": "webpack-dev-server --watch-poll",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kiricon/emoji-selector.git"
},
"keywords": [
"emoji",
"selector",
"picker",
"custom",
"element"
],
"author": "Dominic Valenciana",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kiricon/emoji-selector/issues"
},
"homepage": "https://github.com/Kiricon/emoji-selector#readme",
"devDependencies": {
"@types/node": "^8.0.49",
"ts-loader": "^3.1.1",
"typescript": "^2.6.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"fun-tabs": "^1.0.3"
}
}