-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "haxfred-slack-link-logging",
"version": "0.2.0",
"description": "Link logging module for haxfred and slack",
"repository": {
"url": "https://github.com/haxiom/haxfred-slack-link-logging"
},
"main": "./lib/haxfred-slack-link-logging",
"scripts": {
"test": "npm run lint && mocha",
"prepublish": "npm test && npm run build",
"build": "babel src --out-dir lib",
"lint": "standard --verbose | snazzy"
},
"author": {
"name": "Haxiom"
},
"contributors": [
{
"name": "Blade Barringer",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"snazzy": "^2.0.1",
"standard": "^5.4.1"
},
"dependencies": {
"lodash": "^3.10.1",
"superagent": "^1.5.0"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect",
"sinon"
]
}
}