-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.9 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@altmetric/identifiers",
"version": "1.0.0",
"description": "Extract scholarly identifiers (DOI, arXiv, ORCID, PubMed, Bibcode, Handle, NCT, RePEc, URN)",
"type": "module",
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./src/index.js"
},
"./arxiv": {
"types": "./types/arxiv.d.ts",
"import": "./src/arxiv.js"
},
"./bibcode": {
"types": "./types/bibcode.d.ts",
"import": "./src/bibcode.js"
},
"./doi": {
"types": "./types/doi.d.ts",
"import": "./src/doi.js"
},
"./handle": {
"types": "./types/handle.d.ts",
"import": "./src/handle.js"
},
"./nct": {
"types": "./types/nct.d.ts",
"import": "./src/nct.js"
},
"./orcid": {
"types": "./types/orcid.d.ts",
"import": "./src/orcid.js"
},
"./pubmed": {
"types": "./types/pubmed.d.ts",
"import": "./src/pubmed.js"
},
"./repec": {
"types": "./types/repec.d.ts",
"import": "./src/repec.js"
},
"./urn": {
"types": "./types/urn.d.ts",
"import": "./src/urn.js"
}
},
"files": [
"src",
"types"
],
"keywords": [
"doi",
"arxiv",
"orcid",
"pubmed",
"bibcode",
"handle",
"nct",
"repec",
"urn",
"identifiers",
"scholarly"
],
"repository": {
"type": "git",
"url": "git+https://github.com/altmetric/identifiers-js.git"
},
"bugs": "https://github.com/altmetric/identifiers-js/issues",
"author": "Altmetric LLP",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src tests",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"pretest": "npm run lint"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"jest": "^29.7.0"
}
}