forked from missive/emoji-mart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@deskpro/fa-picker",
"version": "0.2.0",
"description": "Customizable Slack-like font awesome icon picker for React based on emoji-mart",
"main": "dist/index.js",
"module": "dist-es/index.js",
"repository": {
"type": "git",
"url": "[email protected]:deskpro/fa-picker.git"
},
"keywords": [
"react",
"emoji",
"picker"
],
"author": "DeskPRO <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/deskpro/fa-picker/issues"
},
"homepage": "https://github.com/deskpro/fa-picker",
"dependencies": {
"babel-plugin-convert-to-json": "^0.1.0",
"classnames": "^2.2.6",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.0",
"react-color": "^2.17.3",
"react-dropzone": "^10.1.10"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.11.2",
"auto-changelog": "1.12.0",
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-jest": "23.6.0",
"babel-loader": "8.3.0",
"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",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"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",
"inflection": "1.10.0",
"jest": "23.6.0",
"prettier": "^1.16.4",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-test-renderer": "^16.8.4",
"rimraf": "2.5.2"
},
"scripts": {
"changelog": "auto-changelog",
"clean": "rm -rf dist/ dist-es/ dist-modern/",
"build:dist": "npm run build:cjs && npm run build:es && npm run build:modern",
"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'",
"build": "npm run clean && npm run build:dist",
"watch": "BABEL_ENV=cjs babel src --watch --out-dir dist --copy-files --ignore '**/*.test.js'",
"start": "npm run watch",
"react:clean": "rimraf node_modules/{react,react-dom,react-addons-test-utils}",
"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",
"test": "npm run clean && jest",
"prepublishOnly": "npm run build",
"prettier": "prettier --write \"{src,scripts}/**/*.js\"",
"prettier:check": "prettier --check \"{src,scripts}/**/*.js\"",
"prepare": "npm run build:dist"
},
"pre-commit": {
"run": "prettier:check"
}
}