-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.36 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
{
"name": "@imec-ilabt/solid-perftest-tools",
"version": "1.4.11",
"description": "CLI tools to populate and flood solid servers for performance testing purposes.",
"type": "module",
"bin": {
"solid-populate": "./bin/populate/populate-main.js",
"solid-flood": "./bin/flood/flood.js",
"solid-flood-worker": "./bin/flood/flood-worker.js",
"solid-account-file-merger": "./bin/utils/account-file-merger.js",
"solid-auth-cache-merger": "./bin/utils/auth-cache-merger.js"
},
"exports": {
"import": "./bin/populate/populate-lib.js",
"require": "./bin/populate/populate-lib.cjs"
},
"types": "./bin/populate/populate-lib.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"build": "tsc && npx rollup bin/populate/populate-lib.js --file bin/populate/populate-lib.cjs --format cjs --sourcemap inline && chmod u+x ./bin/populate/populate-main.js ./bin/flood/flood.js ./bin/flood/flood-worker.js ./bin/utils/account-file-merger.js ./bin/utils/auth-cache-merger.js",
"prepublish": "tsc && npx rollup bin/populate/populate-lib.js --file bin/populate/populate-lib.cjs --format cjs --sourcemap inline && chmod u+x ./bin/populate/populate-main.js ./bin/flood/flood.js ./bin/flood/flood-worker.js ./bin/utils/account-file-merger.js ./bin/utils/auth-cache-merger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidLabResearch/solid-perftest-tools.git"
},
"keywords": [
"solid"
],
"author": "Wim Van de Meerssche",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolidLabResearch/solid-perftest-tools/issues"
},
"homepage": "https://github.com/SolidLabResearch/solid-perftest-tools#readme",
"dependencies": {
"@inrupt/solid-client-authn-node": "^1.17.3",
"@types/sqlite3": "^3.1.11",
"jsonld-streaming-serializer": "^2.1.0",
"n3": ">=1.16.3",
"node-fetch": ">=3.2.10",
"proper-lockfile": "^4.1.2",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/n3": "^1.10.4",
"@types/node": "^18.11.2",
"@types/node-fetch": "^2.6.2",
"@types/proper-lockfile": "^4.1.4",
"@types/uuid": "^9.0.3",
"@types/yargs": "^17.0.13",
"prettier": "2.6.0",
"rollup": "^4.9.6",
"typescript": "^4.8.4"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0 <19.0.0"
}
}