-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "@borgar/simple-xml",
"version": "2.0.1",
"description": "Overly simplistic (but fast) XML parser",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "simple-xml.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint lib/",
"test": "tape test/index.js | tap-min",
"typecheck": "tsc --noEmit",
"build:types": "jsdoc -c tsd.json lib>simple-xml.d.ts",
"build:docs": "echo '# _Simple-xml_ API\n'>API.md; jsdoc -t node_modules/@borgar/jsdoc-tsmd -d console lib/>>API.md",
"build": "npm run build:types && npm run build:docs && echo 'Success!'"
},
"repository": {
"type": "git",
"url": "git@github.com:borgar/simple-xml.git"
},
"keywords": [
"xml",
"parser"
],
"engines": {
"node": ">=16.0.0"
},
"author": "Borgar Þorsteinsson <borgar@borgar.net> (http://borgar.net/)",
"license": "MIT",
"devDependencies": {
"@borgar/eslint-config": "~3.1.0",
"@borgar/jsdoc-tsmd": "~0.1.0",
"@rollup/plugin-babel": "~6.0.3",
"eslint": "~8.46.0",
"eslint-plugin-jsdoc": "~46.4.5",
"jsdoc": "~4.0.2",
"rollup-plugin-minification": "~0.2.0",
"tap-min": "~2.0.0",
"tape": "~5.6.6",
"typescript": "~5.1.6"
}
}