emoji-picker-element/package.json

50 lines
1.2 KiB
JSON
Raw Normal View History

2020-05-08 23:59:22 +02:00
{
"name": "lite-emoji-picker",
"version": "1.0.0",
"description": "Lightweight emoji picker based on IndexedDB",
2020-05-10 05:13:50 +02:00
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
2020-05-10 04:39:47 +02:00
"files": [
"dist"
],
"sideEffects": false,
2020-05-08 23:59:22 +02:00
"scripts": {
2020-05-10 04:39:47 +02:00
"build": "rollup -c",
2020-05-08 23:59:22 +02:00
"lint": "standard",
"lint:fix": "standard --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nolanlawson/lite-emoji-picker.git"
},
"keywords": [
"emoji",
"picker",
"IndexedDB"
],
"author": "Nolan Lawson <nolan@nolanlawson.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nolanlawson/lite-emoji-picker/issues"
},
"homepage": "https://github.com/nolanlawson/lite-emoji-picker#readme",
"devDependencies": {
"emojibase-data": "^5.0.1",
2020-05-10 04:39:47 +02:00
"rollup": "^2.8.2",
"rollup-plugin-commonjs": "^10.1.0",
2020-05-12 06:25:07 +02:00
"rollup-plugin-json": "^4.0.0",
2020-05-10 04:39:47 +02:00
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.2.1",
"standard": "^14.3.3",
"svelte": "^3.22.2"
2020-05-08 23:59:22 +02:00
},
"standard": {
"global": [
2020-05-13 05:25:46 +02:00
"fetch",
2020-05-08 23:59:22 +02:00
"indexedDB",
"IDBKeyRange"
]
}
}