-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.09 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.09 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
{
"name": "xml-naming",
"version": "0.1.0",
"description": "Validates XML name productions — Name, NCName, QName, NMToken, NMTokens — for XML 1.0 and 1.1",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"import": "./src/index.js",
"types": "./src/index.d.ts"
}
},
"files": [
"src",
"README.md"
],
"scripts": {
"test": "jasmine specs/*spec.js"
},
"keywords": [
"xml",
"xml-name",
"ncname",
"qname",
"nmtoken",
"xml-validation",
"xml-namespace",
"name-validator",
"xml-1.0",
"xml-1.1"
],
"author": "Amit Gupta (https://solothought.com)",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/NaturalIntelligence"
}
],
"devDependencies": {
"jasmine": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalIntelligence/xml-naming"
},
"bugs": {
"url": "https://github.com/NaturalIntelligence/xml-naming/issues"
}
}