emoji-picker-element/package.json

100 lines
2.4 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-06-04 05:12:43 +02:00
"main": "index.js",
"module": "index.js",
"type": "module",
2020-05-10 04:39:47 +02:00
"files": [
2020-06-04 05:12:43 +02:00
"database.js",
"index.js",
"picker.js"
2020-05-10 04:39:47 +02:00
],
2020-05-08 23:59:22 +02:00
"scripts": {
2020-06-04 05:12:43 +02:00
"build": "NODE_ENV=production rollup -c",
"dev": "NODE_ENV=development rollup -c -w",
2020-06-03 05:07:19 +02:00
"lint": "standard && stylelint '**/*.scss'",
"lint:fix": "standard --fix && stylelint --fix '**/*.scss'",
2020-05-08 23:59:22 +02:00
"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",
"npm-run-all": "^4.1.5",
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-06-03 05:07:19 +02:00
"stylelint": "^13.5.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.17.2",
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": {
2020-06-04 05:12:43 +02:00
"ignore": [
"/database.js",
"/index.js",
"/picker.js"
],
2020-05-08 23:59:22 +02:00
"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
},
2020-06-03 05:07:19 +02:00
"stylelint": {
"extends": "stylelint-config-recommended-scss",
"rules": {
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"lite-emoji-picker"
]
}
]
}
},
2020-06-01 03:07:10 +02:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
2020-06-03 05:07:19 +02:00
"*.js": "standard --fix",
"*.(css|scss)": "stylelint --fix '**/*.scss'"
2020-05-08 23:59:22 +02:00
}
}