-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 906 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 906 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "version-cli",
"version": "1.0.2",
"description": "A CLI for updating the version numbers of files",
"author": "Evans Owino",
"repository": {
"type": "git",
"url": "https://github.com/eowino/version-cli"
},
"bin": {
"version": "./bin/version"
},
"scripts": {
"test": "jest",
"test-watch": "npm run test -- --watch",
"lint": "eslint ./src/* ./bin/version"
},
"directories": {
"test": "test",
"bin": "bin"
},
"keywords": [
"file",
"management",
"semver",
"version",
"bump",
"CLI",
"versioning"
],
"engines": {
"node": ">=6"
},
"jest": {
"testURL": "http://localhost/"
},
"license": "MIT",
"devDependencies": {
"eslint": "^4.19.1",
"jest": "^22.4.2"
},
"dependencies": {
"chalk": "^2.3.2",
"minimist": "^1.2.0",
"query-string": "^6.0.0",
"semver": "^5.5.0"
}
}