forked from nodeshift/opossum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.35 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": "opossum",
"version": "6.4.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky install",
"prebuild": "npm run pretest",
"build": "./test/browser/generate-index.sh && npm run build:browser && npm run build:docs",
"build:browser": "webpack --config=config/webpack.config.js",
"build:docs": "npm run build:docs:html && npm run build:docs:markdown",
"build:docs:html": "documentation build index.js -f html -o docs --config documentation.yml",
"build:docs:markdown": "documentation build index.js -f md -o docs/opossum.md",
"pretest": "eslint --ignore-path .gitignore .",
"test": "nyc tape test/*.js | tap-spec",
"test:headless": "node test/browser/webpack-test.js",
"test:browser": "opener http://localhost:9007/test/browser/index.html && serve . -p 9007",
"ci": "npm run build && npm run test && npm run test:headless",
"lint": "standardx test/*.js index.js lib/*.js test/*/*.js",
"clean": "rm -rf node_modules dist/*.js test/browser/webpack-test.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift/opossum.git"
},
"files": [
"index.js",
"lib",
"dist",
"doc/opossum.md"
],
"bugs": {
"url": "https://github.com/nodeshift/opossum/issues"
},
"homepage": "https://nodeshift.dev/opossum",
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.4",
"codacy-coverage": "^3.4.0",
"coveralls": "^3.1.1",
"documentation": "^13.2.5",
"eslint": "^8.6.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^7.0.4",
"nyc": "~15.1.0",
"opener": "1.5.2",
"serve": "^13.0.2",
"tap-spec": "~5.0.0",
"tape": "~5.5.2",
"webpack": "~4.46.0",
"webpack-cli": "~4.9.2"
},
"description": "A fail-fast circuit breaker for promises and callbacks",
"keywords": [
"circuit breaker",
"circuit-breaker",
"fail-fast",
"circuit",
"breaker",
"hystrix",
"rate-limiting"
],
"engines": {
"node": "^18 || ^16 || ^14"
},
"support": true
}