-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 923 Bytes
/
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
{
"name": "shortstop-handlers",
"version": "1.1.1",
"description": "Common protocol handlers for use with the shortstop node module.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js",
"cover": "nyc --reporter=lcov npm test && nyc report",
"lint": "jshint -c .jshintrc index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krakenjs/shortstop-handlers.git"
},
"keywords": [
"shortstop",
"node",
"json"
],
"author": "Erik Toth <[email protected]>",
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"jshint": "^2.5.0",
"nyc": "^15.1.0",
"tape": "^5.5.0"
},
"dependencies": {
"caller": "^1.0.1",
"core-util-is": "^1.0.1",
"glob": "^7.0.5"
}
}