-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
123 lines (123 loc) · 3.92 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
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
{
"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": "cd libraries/fomantic && npx gulp build && cp dist/*.js ../../assets/scripts && cp dist/*.css ../../assets/styles && cp -r dist/themes ../../assets && cd ../..",
"build:views": "jade --pretty -o assets/ views/site.jade",
"compile": "npm run build:scripts",
"coverage": "c8 npm test",
"deploy": "npm run build && fabric-http",
"docs": "npm run build:docs && fabric-http docs",
"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",
"start": "npm run compile && node scripts/node.js",
"static": "npm run build:scripts && fabric-http assets",
"test": "mocha tests"
},
"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",
"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.18.3",
"browserify-fs": "1.0.0",
"buffer": "6.0.3",
"canvas": "2.11.2",
"cross-fetch": "3.1.5",
"crypto-browserify": "3.12.0",
"d3": "7.8.2",
"d3-graphviz": "5.0.2",
"express": "4.18.2",
"express-bearer-token": "2.4.0",
"express-flash": "0.0.2",
"express-session": "1.15.6",
"fast-json-patch": "3.1.1",
"graphql": "16.6.0",
"graphql-http": "1.17.1",
"isomorphic-ws": "4.0.1",
"jquery": "3.6.4",
"js-beautify": "1.14.6",
"jsdom": "23.0.1",
"json-pointer": "0.6.2",
"lodash.merge": "4.6.2",
"node-util": "0.0.1",
"page": "1.11.4",
"path-browserify": "1.0.1",
"path-to-regexp": "6.1.0",
"peer": "FabricLabs/peerjs-server#feature/fabric",
"peerjs": "1.4.7",
"pluralize": "7.0.0",
"querystring-es3": "0.2.1",
"stoppable": "1.1.0",
"stream-browserify": "3.0.0",
"url": "0.11.0",
"webpack": "5.79.0",
"ws": "8.13.0"
},
"devDependencies": {
"@babel/preset-env": "7.19.4",
"@webcomponents/webcomponentsjs": "2.7.0",
"c8": "7.11.3",
"fomantic-ui": "2.9.0",
"gulp": "4.0.2",
"jsdoc": "4.0.2",
"mocha": "10.2.0",
"puppeteer": "19.8.2",
"semistandard": "13.0.1",
"showdown": "1.9.1",
"typescript": "4.6.3"
},
"browser": {
"ws": false
},
"c8": {
"report-dir": "./reports/coverage",
"temp-dir": "./reports/c8",
"exclude": [
"docs",
"tests"
]
},
"semistandard": {
"ignore": [
"docs",
"tests"
]
}
}