emoji-mart-lazyload/package.json

79 lines
2.5 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",
2017-06-27 21:36:24 +00:00
"version": "1.0.1",
2016-07-11 18:22:39 +00:00
"description": "Customizable Slack-like emoji picker for React",
"main": "dist/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",
"dependencies": {
"measure-scrollbar": "^0.1.0"
},
2016-05-31 14:36:52 +00:00
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
2016-05-31 14:36:52 +00:00
"babel-core": "6.7.2",
"babel-loader": "6.2.4",
"babel-plugin-transform-define": "^1.3.0",
"babel-plugin-transform-es2015-destructuring": "6.9.0",
"babel-plugin-transform-object-rest-spread": "6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
2017-06-23 09:21:32 +00:00
"babel-plugin-transform-runtime": "^6.23.0",
2016-05-31 14:36:52 +00:00
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
2017-06-23 09:21:32 +00:00
"babel-runtime": "^6.23.0",
2017-05-09 15:03:05 +00:00
"emoji-datasource": "^3.0.0",
"emojilib": "^2.2.1",
2016-05-31 14:36:52 +00:00
"inflection": "1.10.0",
"jasmine-core": "^2.5.2",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.2",
2016-05-31 14:36:52 +00:00
"mkdirp": "0.5.1",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
2016-05-31 14:36:52 +00:00
"rimraf": "2.5.2",
2017-09-11 04:10:00 +00:00
"size-limit": "^0.11.1",
"svg-jsx-loader": "^0.0.16",
2017-09-17 07:33:59 +00:00
"webpack": "3.6.0"
2016-05-31 14:36:52 +00:00
},
"scripts": {
2017-09-11 08:37:25 +00:00
"clean": "rimraf data/data.js dist/",
"clean:dist": "rm -rf dist/",
2016-05-31 14:36:52 +00:00
"build:data": "node scripts/build-data",
"build:example": "node scripts/build-example",
2017-09-03 09:40:04 +00:00
"build:dist": "npm run clean:dist && babel src --out-dir dist --copy-files --ignore webpack.config.js",
"build": "npm run build:data && npm run build:example && npm run build:dist",
2017-09-03 09:40:04 +00:00
"watch": "babel src --watch --out-dir dist --copy-files --ignore webpack.config.js",
2017-05-27 18:55:22 +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",
2017-08-16 22:33:24 +00:00
"test": "NODE_ENV=test karma start && size-limit",
"prepublish": "npm run clean && npm run build"
2017-08-16 22:33:24 +00:00
},
"size-limit": [
{
"path": "dist/index.js",
2017-09-11 08:37:25 +00:00
"limit": "88 KB"
2017-08-16 22:33:24 +00:00
}
]
2016-05-31 14:36:52 +00:00
}