-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 2.03 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
{
"name": "@thegetty/linkedart.js",
"version": "0.20.0",
"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": "jest",
"test": "jest",
"build": "npm run clean:dist && rollup -c build/rollup.config.js",
"clean:dist": "rm -Rrf ./dist; rm -Rrf ./constants",
"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/",
"lint": "prettier --check 'src/**/*.js'",
"lint:fix": "prettier -w 'src/**/*.js'",
"prepublishOnly": "rollup -c build/rollup.config.js"
},
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"dependencies": {},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/preset-env": "^7.12.10",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"better-docs": "^2.7.2",
"core-js": "^3.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"jsdoc": "^3.6.7",
"markdown-toc": "^1.2.0",
"minimist": "1.2.6",
"node-notifier": "^8.0.1",
"prettier": "2.4.0",
"rollup": "^2.51.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-terser": "^7.0.2"
},
"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"
}