emoji-picker-element/package.json

75 lines
1.8 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-17 05:36:21 +02:00
"build": "NODE_ENV=production rollup -c",
"dev": "NODE_ENV=development rollup -c -w",
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": {
2020-05-17 05:36:21 +02:00
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"blob-util": "^2.0.2",
2020-05-08 23:59:22 +02:00
"emojibase-data": "^5.0.1",
2020-05-17 05:36:21 +02:00
"esm": "^3.2.25",
"fast-json-stable-stringify": "^2.1.0",
2020-06-01 03:07:10 +02:00
"husky": "^4.2.5",
2020-05-17 05:36:21 +02:00
"if-emoji": "^0.1.0",
2020-06-01 03:07:10 +02:00
"lint-staged": "^10.2.7",
2020-05-17 19:56:31 +02:00
"lodash-es": "^4.17.15",
2020-05-10 04:39:47 +02:00
"rollup": "^2.8.2",
"rollup-plugin-svelte": "^5.2.1",
2020-05-31 18:34:17 +02:00
"rollup-plugin-svelte-hot": "^0.7.0",
2020-05-31 22:57:56 +02:00
"sass": "^1.26.7",
2020-05-10 04:39:47 +02:00
"standard": "^14.3.3",
2020-05-18 04:08:00 +02:00
"svelte": "^3.22.2",
"svelte-preprocess": "^3.7.4"
2020-05-08 23:59:22 +02:00
},
"standard": {
"global": [
2020-06-02 03:57:46 +02:00
"btoa",
"crypto",
2020-05-13 05:25:46 +02:00
"fetch",
2020-05-08 23:59:22 +02:00
"indexedDB",
2020-05-17 22:51:07 +02:00
"IDBKeyRange",
2020-05-31 22:57:07 +02:00
"matchMedia",
2020-05-17 22:51:07 +02:00
"requestAnimationFrame",
"requestIdleCallback"
2020-05-08 23:59:22 +02:00
]
2020-06-01 03:07:10 +02:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "standard --fix"
2020-05-08 23:59:22 +02:00
}
}