-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "emojme",
"description": "The Emojartist's toolbox for spreading their work across the slackosphere",
"version": "2.0.1",
"keywords": [
"emoji",
"slack",
"sync",
"download",
"upload"
],
"author": "Jack Ellenberger <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jackellenberger/emojme"
},
"main": "emojme.js",
"files": [
"emojme*",
"lib",
"README.md"
],
"bin": {
"emojme": "./emojme.js"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint . || true",
"test": "mocha spec/unit/**/* && mocha spec/integration/**/*",
"test:unit": "mocha spec/unit/**/*",
"test:integration": "mocha spec/integration/**/*",
"test:debug": "node inspect node_modules/mocha/bin/_mocha",
"test:e2e": "mocha spec/e2e/**",
"generate-docs": "rm -rf docs/* && node_modules/.bin/jsdoc --configure .jsdoc.json --verbose && cp -r docs/emojme/$(./emojme.js --version)/* docs/ && rm -rf docs/emojme",
"generate-usage": "./scripts/usage.sh"
},
"license": "ISC",
"dependencies": {
"commander": "^2.17.1",
"graceful-fs": "^4.1.11",
"js-yaml": "^3.13.1",
"lodash": "^4.17.14",
"superagent": "^3.8.3",
"superagent-throttle": "^1.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-shallow-deep-equal": "^1.4.6",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jsdoc": "^3.6.3",
"jsdoc-template": "braintree/jsdoc-template#3.2.0",
"mocha": "^5.2.0",
"sinon": "^7.2.3"
}
}