-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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
53
54
55
56
57
{
"name": "versionn",
"version": "1.1.1",
"description": "increase version number across package.json, component.json, bower.json and other files",
"keywords": [
"version",
"component.json",
"bower.json",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/commenthol/versionn.git"
},
"license": "MIT",
"author": "commenthol",
"maintainers": [
{
"name": "commenthol",
"email": "commenthol@gmail.com"
}
],
"main": "lib/index.js",
"bin": {
"versionn": "bin/versionn.js"
},
"man": "man/versionn.1",
"files": [
"bin",
"lib",
"man"
],
"scripts": {
"all": "npm run lint && npm test && npm version",
"coverage": "nyc -r text npm test",
"lint": "eslint lib test",
"test": "mocha"
},
"eslintConfig": {
"extends": "standard"
},
"dependencies": {
"asyncc": "^2.0.6",
"semver": "^7.5.4"
},
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"shelljs": "^0.8.5"
},
"preferGlobal": true
}