forked from godaddy/abstract-npm-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 949 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 949 Bytes
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
{
"name": "abstract-npm-registry",
"version": "0.0.1",
"description": "An open and extendible test suite for you can use to test various functional areas of an npm registry.",
"main": "index.js",
"scripts": {
"test": "DEBUG=abstract* node test/run.test.js && mocha test/{custom,extensibility}.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/warehouseai/abstract-npm-registry.git"
},
"keywords": [
"npm",
"npm-registry",
"npm-client",
"abstract",
"mocha",
"tests"
],
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/warehouseai/abstract-npm-registry/issues"
},
"homepage": "https://github.com/warehouseai/abstract-npm-registry#readme",
"devDependencies": {
"assume": "^1.4.1",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
},
"dependencies": {
"diagnostics": "^1.0.1"
}
}