-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
74 lines (74 loc) · 1.91 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
{
"name": "scribejs",
"version": "2.0.7",
"description": "RSSAgent IRC logs Into Minutes in Markdown",
"main": "main.js",
"keywords": [
"W3C",
"scribe",
"minute taking"
],
"author": {
"name": "Ivan Herman",
"email": "ivan@w3.org",
"url": "https://www.w3.org/People/Ivan/"
},
"contributors": [
{
"name": "BigBlueHat",
"email": "byoung@bigbluehat.com",
"url": "http://bigbluehat.com/"
}
],
"bugs": {
"url": "https://github.com/w3c/scribejs/issues",
"email": "ivan@w3.org"
},
"bin": "./main.js",
"license": "W3C-20150513",
"repository": {
"type": "git",
"url": "https://github.com/w3c/scribejs.git"
},
"engines": {
"node": ">=14.x"
},
"preferGlobal": true,
"dependencies": {
"ajv": "^6.12.3",
"commander": "^6.2.0",
"js-yaml": ">=3.13.1",
"marked": "^4.0.10",
"node-fetch": "^2.6.1",
"octokat": "^0.8.0",
"terser": "^4.8.1",
"underscore": "^1.13.1",
"valid-url": "^1.0.9",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/commander": "^2.12.2",
"@types/js-yaml": "^3.12.5",
"@types/node": "^14.14.10",
"@types/node-fetch": "^2.5.7",
"@types/terser": "^3.12.0",
"@types/underscore": "^1.10.24",
"@types/valid-url": "^1.0.3",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"browserify": "^16.3.0",
"eslint": "^7.14.0",
"http-server": "^14.1.1",
"typedoc": "^0.22.17",
"typescript": "^4.1.2"
},
"scripts": {
"docs": "./node_modules/typedoc/bin/typedoc src/main.ts",
"dist": "tsc",
"build": "tsc && browserify BrowserView/lib/page.js BrowserView/lib/bridge.js > BrowserView/js/scribejs.js && terser BrowserView/js/scribejs.js > BrowserView/js/scribejs.min.js",
"lint": "eslint src/*",
"serve": "http-server BrowserView/"
}
}