-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
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": "@muze-nl/oldm",
"version": "0.5.3",
"description": "Object - Linked Data Mapper",
"type": "module",
"source": [
"src/oldm.mjs"
],
"main": "src/index.mjs",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap test/*.mjs",
"tap": "tap",
"build-dev": "./node_modules/.bin/esbuild src/index.mjs --bundle --sourcemap --outfile=dist/oldm.js",
"build": "./node_modules/.bin/esbuild src/index.mjs --bundle --sourcemap --outfile=dist/oldm.min.js --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poef/oldm.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/poef/oldm/issues"
},
"homepage": "https://github.com/poef/oldm/#readme",
"devDependencies": {
"esbuild": "0.20.2",
"eslint": "^8.13.0",
"tap": "^16.0.1"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"n3": "^2.0.1"
},
"files": [
"dist/",
"src/",
"README.md",
"LICENSE"
]
}