-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "codemeta-tools",
"version": "1.0.9",
"main": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"files": [
"dist/",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"build": "NODE_OPTIONS=\"$NODE_OPTIONS --loader ts-node/esm\" npx webpack",
"compile": "npx tsc",
"prepublishOnly": "npm run compile && npm run build"
},
"author": "hjonin",
"license": "AGPL-3.0-or-later",
"description": "A set of tools to play with software metadata.",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/hjonin/codemeta-tools.git"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@jest/globals": "^29.7.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.4",
"@types/webpack": "^5.28.5",
"eslint": "^9.9.1",
"ts-jest": "^29.2.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.4.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"jsonld": "^8.3.2"
},
"type": "module"
}