-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "macramoji",
"description": "A Slack-centric macro language for altering emoji",
"version": "0.2.2",
"license": "Apache-2.0",
"author": "Ian Katz <[email protected]>",
"homepage": "https://github.com/ianfixes/macramoji#readme",
"main": "lib",
"scripts": {
"prepublish": "coffee --bare -o lib -c src",
"pretest": "",
"test": "coffeetape test/*.coffee | faucet",
"posttest": "coffeelint src/ test/",
"coverage": "rm -rf coverage/* && trap 'rm -f src/*.js test/*.js' EXIT; coffeeCoverage --inst istanbul . . && istanbul cover --print none coffeetape test/*.coffee && istanbul report text"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianfixes/macramoji.git"
},
"keywords": [
"emoji",
"macro",
"slack"
],
"bugs": {
"url": "https://github.com/ianfixes/macramoji/issues"
},
"devDependencies": {
"coffee-coverage": "^2.0.1",
"coffeelint": "^1.16.0",
"coffeetape": "^1.0.1",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"sinon": "^2.2.0",
"tape-catch": "^1.0.6"
},
"dependencies": {
"async": "^2.4.1",
"caller-id": "^0.1.0",
"emoji-datasource-apple": "^3.0.0",
"get-installed-path": "^2.0.3",
"gm": "^1.23.0",
"jison": "https://github.com/zaach/jison.git#7653842e5120510b0b77484ac90d6c569cf146fd",
"tmp": "0.0.31",
"url": "^0.11.0"
}
}