forked from omnidan/node-emoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "node-emoji",
"version": "1.8.1",
"description": "simple emoji support for node.js projects",
"author": "Daniel Bugl <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/omnidan/node-emoji.git"
},
"keywords": [
"emoji",
"simple",
"emoticons",
"emoticon",
"emojis",
"smiley",
"smileys",
"smilies",
"ideogram",
"ideograms"
],
"bugs": {
"url": "https://github.com/omnidan/node-emoji/issues"
},
"dependencies": {
"lodash.toarray": "^4.4.0",
"skin-tone": "1.0.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"should": "^11.1.0"
},
"scripts": {
"coverage": "./node_modules/.bin/istanbul cover _mocha test",
"emojiparse": "node lib/emojiparse.js",
"test": "./node_modules/.bin/mocha --require should --bail --reporter spec test/*",
"watch": "./node_modules/.bin/mocha --require should --bail --reporter spec test/* --watch",
"prepublish": "npm run test"
},
"main": "index.js",
"license": "MIT"
}