-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "@5app/buslane",
"version": "3.4.1",
"description": "buslane is a cross-service and transparent object.method proxy, using an rpc-lite json/http1 transport.",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"index.js",
"lib/"
],
"scripts": {
"test": "npm run spec && (nyc report --reporter=text-lcov | coveralls)",
"spec": "nyc mocha ./test/tests/*.js",
"lint": "eslint .",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)' && exit 0"
},
"keywords": [
"rpc",
"http",
"object",
"proxy"
],
"author": "5app",
"license": "MIT",
"devDependencies": {
"@5app/semantic-release-config": "^1.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.23.0",
"eslint-config-5app": "^0.19.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"semantic-release": "^21.0.0"
},
"pre-commit": [
"precommit-msg",
"lint-diff"
],
"release": {
"extends": "@5app/semantic-release-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5app/buslane.git"
},
"bugs": {
"url": "https://github.com/5app/buslane/issues"
},
"homepage": "https://github.com/5app/buslane#readme",
"dependencies": {
"@5app/logger": "^2.3.0"
}
}