-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
{
"name": "structura",
"version": "1.0.0",
"description": "",
"private": false,
"main": "index.js",
"type": "module",
"module": "index.ts",
"scripts": {
"gd": "node --experimental-strip-types ./scripts/generateData/index.ts",
"gd:small": "npm run gd -- -- small 5000",
"gd:standard": "npm run gd -- -- standard 5000",
"gd:complex": "npm run gd -- -- complex 5000",
"gd:varied": "npm run gd -- -- varied 5000",
"measure": "node --experimental-strip-types ./suite/measure.ts",
"compare": "node --experimental-strip-types ./suite/compare.ts",
"clean": "node --experimental-strip-types ./scripts/clean/index.ts",
"next": "node --experimental-strip-types ./scripts/version/index.ts",
"promote": "node --experimental-strip-types ./scripts/promote/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewRedican/structura.git"
},
"author": "Andrew Redican",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/AndrewRedican/structura/issues"
},
"homepage": "https://github.com/AndrewRedican/structura#readme",
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@types/node": "^22.7.5"
},
"keywords": [
"TypeScript",
"Performance",
"Testing",
"JavaScript",
"Node",
"TS",
"JS",
"andrewredican",
"execution time",
"memory usage"
]
}