-
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.29 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.29 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": "cito-utils",
"version": "0.1.0",
"description": "Utilities for the Citation Typing Ontology (CiTO) - enums, inverse lookups, and helpers for http://purl.org/spar/cito",
"author": "Rowan Cockett <rowan@continuousfoundation.org>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/continuous-foundation/cito-utils.git"
},
"bugs": {
"url": "https://github.com/continuous-foundation/cito-utils/issues"
},
"homepage": "https://github.com/continuous-foundation/cito-utils",
"scripts": {
"prepublishOnly": "bun test && bun run build",
"clean": "rm -rf dist",
"test": "bun test",
"lint": "eslint \"src/**/!(*.spec).ts\" -c ./.eslintrc.cjs",
"lint:format": "prettier --check \"src/**/*.{ts,tsx,md}\"",
"build:esm": "tsc",
"build": "npm-run-all -l clean -p build:esm"
},
"keywords": [
"cito",
"citation",
"citation-typing-ontology",
"spar",
"scholarly"
],
"devDependencies": {
"bun-types": "^1.3.11",
"eslint": "^8.57.1",
"eslint-config-curvenote": "latest",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}