-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "parse-app-info",
"description": "Parse information about a Node application process and its environment. Made for Cabin.",
"version": "6.0.0",
"author": "Philipp Kursawe <[email protected]> (https://pke.github.io)",
"bugs": {
"url": "https://github.com/cabinjs/parse-app-info/issues",
"email": "[email protected]"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Nick Baugh <[email protected]> (https://niftylettuce.com)",
"Philipp Kursawe <[email protected]> (https://pke.github.io)"
],
"dependencies": {
"ip": "^2.0.1",
"last-commit-log": "^3.4.0",
"lodash": "^4.17.21",
"read-pkg-up": "7",
"semver": "^7.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"ava": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mocked-env": "1.3.5",
"nyc": "^15.1.0",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"rimraf": "^5.0.0",
"xo": "^0.54.2"
},
"engines": {
"node": ">=14"
},
"files": [
"index.js"
],
"homepage": "https://github.com/cabinjs/parse-app-info",
"keywords": [
"app",
"appinfo",
"commit",
"git",
"lass",
"last-commit"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/cabinjs/parse-app-info"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}