-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"name": "lazy-commit-message",
"version": "1.0.3",
"main": "index.js",
"bin": {
"lazy-commit": "./bin/lazy-commit.js"
},
"scripts": {
"commit": "lazy-commit commit",
"new-branch": "lazy-commit new-branch",
"test": "nyc --reporter=html mocha --recursive",
"test:watch": "npm test -- --watch",
"test:coverage": "nyc --reporter=lcov --reporter=text-lcov npm test",
"publish": "np"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/linkstrifer/lazy-commit.git"
},
"bugs": {
"url": "https://github.com/linkstrifer/lazy-commit/issues"
},
"homepage": "https://github.com/linkstrifer/lazy-commit#readme",
"description": "",
"dependencies": {
"app-root-path": "^2.1.0",
"colors": "^1.3.3",
"readline-sync": "^1.4.9",
"shelljs": "^0.8.3",
"simple-git": "^3.3.0"
},
"devDependencies": {
"mocha": "^5.2.0",
"np": "^5.1.2",
"nyc": "^14.1.1"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}