-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "buildgoggles",
"version": "1.0.0",
"description": "A simple CLI for gathering key info around a git repo and writing it to a json file",
"main": "src/index.js",
"bin": {
"buildgoggles": "./bin/buildgoggles"
},
"scripts": {
"setup": "./pretest.sh",
"test": "./node_modules/mocha/bin/mocha spec/*.spec.js",
"coverage": "nyc npm test",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git://github.com/arobson/buildgoggles.git"
},
"keywords": [
"build",
"git",
"info"
],
"author": "Alex Robson",
"license": "MIT",
"bugs": {
"url": "https://github.com/arobson/buildgoggles/issues"
},
"homepage": "https://github.com/arobson/buildgoggles#readme",
"dependencies": {
"globulesce": "1.0.1",
"when": "^3.7.8",
"yargs": "^17.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"sinon": "^1.17.2",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"standard": "^10.0.2",
"standard-version": "^9.3.0"
},
"standard": {
"env": [
"mocha"
]
}
}