forked from joeattardi/picmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "@joeattardi/emoji-button",
"version": "3.1.1",
"description": "Vanilla JavaScript emoji picker",
"keywords": [
"emoji",
"javascript"
],
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"build:watch": "rollup -cw",
"prepublishOnly": "cross-env NODE_ENV=production rollup -c",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint src/*.ts",
"prettify": "prettier src/*.ts --write"
},
"author": "Joe Attardi <[email protected]> (https://joeattardi.codes)",
"repository": {
"type": "git",
"url": "https://github.com/joeattardi/emoji-button.git"
},
"homepage": "https://github.com/joeattardi/emoji-button",
"bugs": "https://github.com/joeattardi/emoji-button/issues",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^4.1.2",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"babel-jest": "^26.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rollup": "^2.13.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-regular-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@popperjs/core": "^2.4.0",
"focus-trap": "^5.1.0",
"tiny-emitter": "^2.1.0",
"tslib": "^2.0.0",
"twemoji": "^13.0.0"
},
"files": [
"dist",
"index.d.ts"
]
}