This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
66 lines (66 loc) · 1.77 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
{
"name": "emojione-picker",
"version": "2.2.2",
"author": "Tom Moor",
"description": "An emoji picker for React",
"main": "lib/picker.js",
"scripts": {
"build": "babel src -d lib --ignore __tests__",
"preview": "./node_modules/.bin/browserify --extension=.jsx -d -t [ babelify ] preview.jsx -o lib/preview.js",
"watch": "./node_modules/.bin/watchify --extension=.jsx -d -t [ babelify ] src/*.jsx preview.jsx -o lib/preview.js",
"start": "concurrently \"npm run watch\" \"http-server .\"",
"prepublish": "npm run build",
"test": "jest",
"lint": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/tommoor/emojione-picker.git"
},
"bugs": {
"url": "https://github.com/tommoor/emojione-picker/issues"
},
"license": "MIT",
"keywords": [
"react-component",
"emojione",
"emoji",
"picker",
"dialog"
],
"dependencies": {
"emojione": "^2.2.6",
"escape-string-regexp": "^1.0.5",
"lodash": "^4.15.0",
"prop-types": "^15.5.6",
"react": ">=0.14.0",
"react-addons-shallow-compare": ">=0.14.0",
"react-virtualized": "^9.7.4",
"store": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"concurrently": "^3.4.0",
"eslint": "^3.15.0",
"eslint-plugin-prettier": "^2.0.0",
"http-server": "^0.9.0",
"jest": "^18.1.0",
"prettier": "^0.16.0",
"react-addons-perf": "^15.4.2",
"react-dom": "^15.5",
"watchify": "^3.7.0"
},
"jest": {
"testPathDirs": [
"src"
]
}
}