-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.75 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@thegetty/linkedart.js",
"version": "0.21.1",
"keywords": [
"LinkedArt",
"Linked Art",
"JSON-LD",
"Getty"
],
"description": "Library of functions for parsing Linked Art (https://linked.art/) data for the Getty's Research Applications Development Team.",
"scripts": {
"test:unit": "vitest",
"test": "vitest",
"test:ci": "vitest run --reporter=junit --outputFile.junit=/tmp/test-results/junit.xml --reporter=default",
"build": "vite build",
"lint": "eslint --cache src/",
"lint:fix": "eslint --fix --cache src/",
"clean:dist": "rm -Rrf ./dist;rm -Rrf ./helpers;rm -Rrf ./constants",
"prepublishOnly": "vite build",
"build:jsdoc": "node node_modules/markdown-toc/cli.js README.md --maxdepth=3 -i; node node_modules/jsdoc/jsdoc.js -c jsdoc-config.json ; cp src/docs/style.css jsdoc/"
},
"type": "module",
"files": [
"dist",
"src"
],
"main": "dist/linkedart.js.umd.cjs",
"module": "dist/linkedart.js.js",
"exports": {
"import": "./dist/linkedart.js.js",
"require": "./dist/linkedart.js.umd.cjs"
},
"devDependencies": {
"eslint": "^9.2.0",
"better-docs": "^2.7.2",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-vue": "^9.32.0",
"globals": "^16.0.0",
"jsdoc": "^4.0.4",
"markdown-toc": "^1.2.0",
"prettier": "^3.5.1",
"vite": "^6.1.1",
"vitest": "^3.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegetty/linkedart.js.git"
},
"author": "Getty Digital",
"bugs": {
"url": "https://github.com/thegetty/linkedart.js/issues"
},
"license": "BSD-3-Clause",
"homepage": "https://github.com/thegetty/linkedart.js#readme"
}