-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 5.33 KB
/
Copy pathpackage.json
File metadata and controls
159 lines (159 loc) · 5.33 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@fabric/http",
"version": "0.1.0-RC1",
"description": "tools for serving the legacy web with Fabric",
"main": "types/web.js",
"module": "module.js",
"type": "commonjs",
"bin": {
"fabric-http": "./scripts/node.js"
},
"scripts": {
"build": "npm test && npm run build:scripts && npm run build:docs",
"build:app": "npm run build:scripts",
"build:docs": "jsdoc -c jsdoc.json types/**.js settings/deprecations.js README.md -d docs",
"build:coverage": "npm run coverage && c8 report --reporter=html",
"build:fast": "npm run build:scripts",
"build:scripts": "node scripts/build.js",
"build:semantic": "node scripts/build-semantic.js",
"make:fonts": "node scripts/download-fonts.js",
"build:views": "jade --pretty -o assets/ views/site.jade",
"ci": "npm test && npm run build:scripts",
"compile": "npm run build:scripts",
"coverage": "c8 npm test",
"deploy": "npm run build && fabric-http",
"docs": "npm run build:docs && fabric-http docs",
"make:api": "jsdoc2md --configure jsdoc.json --files types/*.js schemata/*.js services/*.js settings/deprecations.js README.md > API.md",
"reports": "npm run report:install && npm run build:coverage && npm run report:todo",
"report:coverage": "npm run build:coverage && c8 report --reporter=text-lcov > reports/coverage.lcov",
"report:install": "rm -rf node_modules && echo \"\n\" > package-lock.json && echo \"$ npm i\" > reports/install.log && npm i >> reports/install.log",
"report:todo": "grep --exclude-dir=.git --exclude-dir=backups --exclude-dir=_book --exclude-dir=assets --exclude-dir=node_modules --exclude-dir=reports --exclude-dir=coverage --exclude-dir=docs -rEI \"TODO|FIXME\" . > reports/TODO.txt",
"review:coverage": "npm run build:coverage && fabric-http reports/coverage",
"sample:hub": "node scripts/sample-hub-http-server.js",
"start": "npm run compile && node scripts/node.js",
"static": "npm run build:scripts && fabric-http assets",
"test": "mocha tests",
"test:standards": "mocha tests/standards.http.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FabricLabs/fabric-http.git"
},
"keywords": [
"http",
"web",
"fabric",
"bitcoin",
"blockchain"
],
"author": "Fabric Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/FabricLabs/fabric-http/issues"
},
"homepage": "https://github.com/FabricLabs/fabric-http#readme",
"engines": {
"node": "^14.18.0 || ^15.7.0 || >=16.0.0"
},
"exports": {
".": "./types/web.js",
"./module.js": "./module.js",
"./types/*": "./types/*.js",
"./constants": "./constants.js",
"./middlewares/auth": "./middlewares/auth.js",
"./middlewares/payments": "./middlewares/payments.js",
"./functions/fabricDocumentPayment402": "./functions/fabricDocumentPayment402.js",
"./functions/sendPaymentRequired402Response": "./functions/sendPaymentRequired402Response.js"
},
"contributors": [
"Eric Martindale",
"Victor Wu"
],
"dependencies": {
"@fabric/core": "FabricLabs/fabric#feature/v0.1.0-RC1",
"assert-browserify": "=2.0.0",
"babel-loader": "=8.2.5",
"body-parser": "=1.20.4",
"buffer": "=6.0.3",
"compression": "=1.8.1",
"cross-fetch": "=4.1.0",
"crypto-browserify": "=3.12.1",
"d3": "=7.9.0",
"d3-graphviz": "=5.6.0",
"express": "=4.22.1",
"express-bearer-token": "=3.0.0",
"express-flash": "=0.0.2",
"express-session": "=1.18.2",
"fast-json-patch": "=3.1.1",
"isomorphic-ws": "=4.0.1",
"jquery": "=3.7.1",
"js-beautify": "=1.15.4",
"jsdom": "=29.0.1",
"json-pointer": "=0.6.2",
"lodash.merge": "=4.6.2",
"node-util": "=0.0.1",
"page": "=1.3.7",
"path-browserify": "=1.0.1",
"path-to-regexp": "=6.3.0",
"pluralize": "=7.0.0",
"puppeteer": "=24.37.5",
"querystring-es3": "=0.2.1",
"stoppable": "=1.1.0",
"stream-browserify": "=3.0.0",
"url": "=0.11.4",
"webpack": "=5.105.2",
"ws": "=8.18.0"
},
"devDependencies": {
"gulp": "=5.0.0",
"better-console": "npm:@fomantic/better-console@^1.0.2",
"fomantic-ui": "=2.9.4",
"gulp-concat-css": "npm:@fomantic/gulp-concat-css@^3.3.0",
"gulp-concat-filenames": "npm:@fomantic/gulp-concat-filenames@^1.2.1",
"gulp-dedupe": "npm:@fomantic/gulp-dedupe@^0.0.3",
"gulp-git": "npm:@fomantic/gulp-git@^2.11.1",
"gulp-header": "npm:@fomantic/gulp-header@^2.1.1",
"gulp-plumber": "npm:@fomantic/gulp-plumber@^1.2.2",
"@babel/preset-env": "=7.26.7",
"@webcomponents/webcomponentsjs": "=2.8.0",
"ajv": "=8.18.0",
"c8": "=11.0.0",
"eslint": "=9.30.1",
"jsdoc": "=4.0.4",
"jsdoc-to-markdown": "=9.1.2",
"mocha": "=12.0.0-beta-10",
"neostandard": "=0.12.1",
"showdown": "=1.9.1",
"typescript": "=5.7.3"
},
"overrides": {
"diff": "=8.0.4",
"elliptic": "npm:@soatok/elliptic-to-noble@^9999.0.0",
"serialize-javascript": "=7.0.5",
"yauzl": "=3.2.1",
"jayson": {
"uuid": "14.0.0"
},
"@actions/http-client": {
"undici": "6.25.0"
},
"@adobe/css-tools": "4.4.4"
},
"browser": {
"ws": false
},
"c8": {
"report-dir": "./reports/coverage",
"temp-dir": "./reports/c8",
"exclude": [
"docs",
"tests"
]
},
"semistandard": {
"ignore": [
"docs",
"tests"
]
}
}