-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
39 lines (39 loc) · 918 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
{
"name": "shortstop",
"version": "1.0.2",
"description": "Enable use of protocols (such as file:, buffer:, or method:) in configuration files.",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"cover": "istanbul cover tape -- test/*.js",
"lint": "jshint -c .jshintrc index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krakenjs/shortstop.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"config",
"configuration"
],
"author": "Erik Toth <[email protected]>",
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"tape": "~2.5.0",
"istanbul": "~0.2.4",
"jshint": "~2.4.4"
},
"dependencies": {
"async": "^3.2.4",
"core-util-is": "~1.0.1"
}
}