emoji-mart-lazyload/package.json

95 lines
3.3 KiB
JSON
Raw Normal View History

2016-05-31 14:36:52 +00:00
{
2016-07-27 15:35:12 +00:00
"name": "emoji-mart",
2019-12-23 14:40:28 +00:00
"version": "2.11.2",
2016-07-11 18:22:39 +00:00
"description": "Customizable Slack-like emoji picker for React",
"main": "dist/index.js",
2017-09-24 00:06:29 +00:00
"module": "dist-es/index.js",
2016-05-31 14:36:52 +00:00
"repository": {
"type": "git",
2016-07-27 15:35:12 +00:00
"url": "git@github.com:missive/emoji-mart.git"
2016-05-31 14:36:52 +00:00
},
"keywords": [
"react",
"emoji",
"picker"
],
"author": "Etienne Lemay",
2016-07-28 19:24:33 +00:00
"license": "BSD-3-Clause",
2016-05-31 14:36:52 +00:00
"bugs": {
2016-07-27 15:35:12 +00:00
"url": "https://github.com/missive/emoji-mart/issues"
2016-05-31 14:36:52 +00:00
},
2016-07-27 15:35:12 +00:00
"homepage": "https://github.com/missive/emoji-mart",
2019-03-09 17:20:46 +00:00
"dependencies": {
"prop-types": "^15.6.0"
},
2016-05-31 14:36:52 +00:00
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0"
2016-05-31 14:36:52 +00:00
},
"devDependencies": {
2017-09-27 20:32:48 +00:00
"@storybook/addon-actions": "^3.2.11",
"@storybook/addon-knobs": "^3.2.10",
"@storybook/addon-links": "^3.2.10",
2017-09-28 00:36:48 +00:00
"@storybook/addon-options": "3.2.10",
2017-09-27 20:32:48 +00:00
"@storybook/react": "^3.2.11",
2019-03-28 13:35:40 +00:00
"auto-changelog": "1.12.0",
2019-03-14 01:31:13 +00:00
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.0.0",
2017-09-17 08:54:22 +00:00
"babel-plugin-module-resolver": "2.7.1",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-transform-es2015-destructuring": "6.9.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
2017-06-23 09:21:32 +00:00
"babel-plugin-transform-runtime": "^6.23.0",
2019-03-14 01:31:13 +00:00
"babel-preset-env": "^1.7.0",
2016-05-31 14:36:52 +00:00
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-runtime": "^6.26.0",
"emoji-datasource": "4.0.4",
"emojilib": "^2.2.1",
2019-06-29 14:48:50 +00:00
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
2016-05-31 14:36:52 +00:00
"inflection": "1.10.0",
2019-03-14 01:31:13 +00:00
"jest": "^23.0.0",
2016-05-31 14:36:52 +00:00
"mkdirp": "0.5.1",
2019-03-16 17:26:09 +00:00
"prettier": "^1.16.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
2019-03-14 01:31:13 +00:00
"react-test-renderer": "^16.8.4",
2016-05-31 14:36:52 +00:00
"rimraf": "2.5.2",
"size-limit": "^0.11.4",
2017-09-27 19:45:26 +00:00
"webpack": "^3.6.0"
2016-05-31 14:36:52 +00:00
},
"scripts": {
2019-03-28 13:35:40 +00:00
"changelog": "auto-changelog",
2019-03-14 01:31:13 +00:00
"clean": "rm -rf dist/ dist-es/ dist-modern/",
2016-05-31 14:36:52 +00:00
"build:data": "node scripts/build-data",
"build:dist": "npm run build:cjs && npm run build:es && npm run build:modern",
2019-03-14 01:31:13 +00:00
"build:cjs": "BABEL_ENV=legacy-cjs babel src --out-dir dist --copy-files --ignore '**/*.test.js'",
"build:es": "BABEL_ENV=legacy-es babel src --out-dir dist-es --copy-files --ignore '**/*.test.js'",
"build:modern": "babel src --out-dir dist-modern --copy-files --ignore '**/*.test.js'",
2017-11-09 08:18:30 +00:00
"build:docs": "cp css/emoji-mart.css docs && webpack --config ./docs/webpack.config.js",
2018-04-30 00:55:13 +00:00
"build": "npm run clean && npm run build:dist",
2019-03-14 01:31:13 +00:00
"watch": "BABEL_ENV=cjs babel src --watch --out-dir dist --copy-files --ignore '**/*.test.js'",
2017-09-29 18:31:44 +00:00
"start": "npm run watch",
2016-05-31 14:36:52 +00:00
"react:clean": "rimraf node_modules/{react,react-dom,react-addons-test-utils}",
2016-07-06 14:20:29 +00:00
"react:14": "npm run react:clean && npm i react@^0.14 react-dom@^0.14 react-addons-test-utils@^0.14 --save-dev",
"react:15": "npm run react:clean && npm i react@^15 react-dom@^15 react-addons-test-utils@^15 --save-dev",
2019-03-14 01:31:13 +00:00
"test": "npm run clean && jest",
2019-12-29 21:47:15 +00:00
"test:size": "size-limit",
2019-12-29 23:24:18 +00:00
"test:ssr": "node test/ssr.js",
2017-11-10 01:12:03 +00:00
"prepublishOnly": "npm run build",
2017-09-27 20:32:48 +00:00
"storybook": "start-storybook -p 6006",
2017-10-07 04:02:02 +00:00
"build-storybook": "build-storybook",
2019-12-29 23:24:18 +00:00
"prettier": "prettier --write \"{src,scripts,test}/**/*.js\"",
"prettier:check": "prettier --check \"{src,scripts,test}/**/*.js\"",
"prepare": "npm run build:dist"
2017-08-16 22:33:24 +00:00
},
"size-limit": [
{
2017-10-06 16:21:47 +00:00
"path": "dist-es/index.js",
2017-09-17 08:54:22 +00:00
"limit": "80 KB"
2017-08-16 22:33:24 +00:00
}
]
2016-05-31 14:36:52 +00:00
}