-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 816 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 816 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
{
"name": "testable-artifact-builder",
"version": "1.0.0",
"description": "A module to help teams build testable artifacts based on feature branch work of Node.js projects that have complex dependency trees of in-house modules.",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReadyTalk/testable-artifact-builder"
},
"author": "Nathan Thompson (https://github.com/thompsnm)",
"license": "Apache 2.0",
"homepage": "https://github.com/ReadyTalk/testable-artifact-builder",
"dependencies": {
"chalk": "^2.2.0",
"commander": "^2.11.0",
"semver": "^5.4.1"
},
"devDependencies": {
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"proxyquire": "^1.8.0"
}
}