-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.17 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
72
73
74
75
{
"name": "project-skyring",
"private": true,
"version": "1.0.0",
"workspaces": [
"packages/*",
"!examples/*",
"!test/*",
"!vendor"
],
"scripts": {
"pnpm": "pnpm",
"lint": "pnpm run -r --if-present lint",
"lint:fix": "pnpm run -r --if-present lint:fix",
"tap": "tap",
"nyc": "nyc",
"release": "multi-release",
"release:dry": "multi-release --no-ci --dry-run --branches=${GITHUB_HEAD_REF:-main}",
"test:all": "npm run local tap -- --coverage-report=text --coverage-report=json -Rclassic",
"test:coverage": "tap -Rclassic --coverage-report=json",
"npm:clean": "rm -rf node_modules/ {packages,vendor,examples}/**/node_modules/",
"local": "env $(cat local.env)",
"docs": "jsdoc -c jsdoc.json && apidoc -i packages/skyring/lib/server -o docs/api",
"check": "check-pkg -d !docs -d !node_modules -d !examples -d !.git",
"compose": "docker-compose -f compose/scylla.yml -f compose/base.yml -f compose/dev.yml",
"start": "npm run compose up -- --build",
"stop": "npm run compose down"
},
"eslintConfig": {
"root": true,
"extends": "eslint-config-codedependant",
"parserOptions": {
"ecmaVersion": 2019
},
"ignorePatterns": [
"node_modules/",
"coverage/"
]
},
"devDependencies": {
"@codedependant/multi-release": "^1.0.6",
"@codedependant/release-config-npm": "^1.0.4",
"apidoc": "^0.17.6",
"chalk": "^3.0.0",
"check-pkg": "^2.1.1",
"codeclimate-test-reporter": "^0.5.1",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"nats": "^1.4.8",
"nyc": "^15.0.1",
"tap": "^14.10.8"
},
"tap": {
"nyc-arg": [
"--exclude=packages/ringpop/**/*.js"
]
},
"description": "![skyring](https://github.com/esatterwhite/skyring/raw/master/assets/skyring.png)",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esatterwhite/skyring.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/esatterwhite/skyring/issues"
},
"homepage": "https://github.com/esatterwhite/skyring#readme"
}