-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "node-emojify",
"version": "0.0.15",
"description": "Transform text into emojis 🚀",
"main": "lib/emojify.js",
"scripts": {
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*",
"lint": "./node_modules/.bin/eslint ./lib/**/*.*",
"lint:fix": "./node_modules/.bin/eslint --fix ./lib/**/*.*",
"test": "npm run cover"
},
"repository": "git+https://github.com/jesselpalmer/node-emojify.git",
"engines": {
"node": ">=4.2.4"
},
"keywords": [
"emojis"
],
"author": "Jesse Palmer <jesselpalmer@gmail.com> (http://jesselpalmer.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesselpalmer/node-emojify/issues"
},
"homepage": "https://github.com/jesselpalmer/node-emojify#readme",
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.0.6",
"eslint": "^7.22.0",
"istanbul": "0.4.5",
"mocha": "6.2.0",
"standard": "13.1.0"
},
"dependencies": {
"node-emojis": "0.0.5"
}
}