forked from OpenTermsArchive/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 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
{
"name": "open-terms-archive",
"version": "0.15.0",
"description": "Tracks and makes visible all changes to the Terms Of Service of online service providers.",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "node --max-http-header-size=32768 src/main.js",
"start:scheduler": "node --max-http-header-size=32768 src/main.js --schedule",
"test": "cross-env NODE_ENV=test mocha --recursive \"./src/**/*.test.js\" \"./scripts/**/*.test.js\" --exit",
"test:debug": "npm run test -- --inspect-brk --exit",
"posttest": "npm run lint",
"lint": "eslint src test scripts bin",
"lint:fix": "npm run lint -- --fix",
"validate": "node ./bin/validate.js",
"validate:schema": "npm run validate -- --schema-only",
"dataset:generate": "node scripts/dataset/main.js",
"dataset:release": "node scripts/dataset/main.js --publish --remove-local-copy",
"dataset:scheduler": "npm run dataset:release -- --schedule",
"refilter": "node src/main.js --refilter-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambanum/OpenTermsArchive.git"
},
"author": "ambanum",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/ambanum/OpenTermsArchive/issues"
},
"homepage": "https://github.com/ambanum/OpenTermsArchive#readme",
"devDependencies": {
"dir-compare": "^4.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.25.3",
"nock": "^13.2.1",
"node-stream-zip": "^1.15.0",
"prettier": "^2.2.1",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"@accordproject/markdown-cicero": "^0.14.1",
"@accordproject/markdown-pdf": "^0.14.1",
"abort-controller": "^3.0.0",
"ajv": "^6.12.6",
"archiver": "^5.3.0",
"async": "^3.2.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"config": "^3.3.6",
"croner": "^4.3.6",
"cross-env": "^7.0.3",
"datauri": "^4.1.0",
"dotenv": "^10.0.0",
"fs-extra": "^10.0.0",
"http-proxy-agent": "^5.0.0",
"https": "^1.0.0",
"https-proxy-agent": "^5.0.0",
"joplin-turndown-plugin-gfm": "^1.0.12",
"jsdom": "^18.1.0",
"json-source-map": "^0.6.1",
"lodash": "^4.17.21",
"mime": "^2.5.2",
"mocha": "^9.1.3",
"mongodb": "^4.2.0",
"node-fetch": "^3.1.0",
"octokit": "^1.7.0",
"pdfjs-dist": "^2.9.359",
"puppeteer": "^11.0.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"sib-api-v3-sdk": "^8.2.1",
"simple-git": "^2.47.0",
"turndown": "^7.0.0",
"winston": "^3.3.3",
"winston-mail": "^2.0.0"
},
"bin": {
"ota-validate": "./bin/validate.js"
}
}