-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.17 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
63
64
65
66
67
{
"name": "mini-xml",
"version": "1.2.0",
"description": "Build xml files from json objects",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:ci": "eslint . --ext .ts --max-warnings 0",
"format": "prettier --config .prettierrc src/**/*.ts --write",
"test": "jest",
"test:module": "jest tests --coverage=false",
"test:src": "jest src --coverage=false",
"test:silent": "jest src --silent",
"test:ci": " run-s clean:coverage && jest src | tee ./coverage/coverage.txt",
"deploy:test": "npm run clean && npm run build && npm run test",
"deploy:prod": "npm run clean && npm run build && npm run test && npm publish",
"clean": "rm -rf ./coverage && rm -rf ./docs && rm -rf ./lib && rm -rf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aerilym/mini-xml.git"
},
"keywords": [
"xml-builder",
"mini-xml",
"json2xml",
"xml"
],
"author": "Ryan Miller <[email protected]> (https://github.com/Aerilym)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aerilym/mini-xml/issues"
},
"files": [
"lib/",
"README.md"
],
"homepage": "https://github.com/Aerilym/mini-xml",
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/dom-parser": "^0.1.1",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^45.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4",
"xml-js": "^1.6.11"
},
"dependencies": {
"dom-parser": "^0.1.6"
},
"packageManager": "[email protected]+sha512.c2e60e7ed04e459591c982f2760cd8f7d1f48fe1ca4d46ccbbf8377df1eb2d077ace1e9d334b06250dddf23c03b4562858f77992b9a3bb4a93355aefd173df32"
}