-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1000 Bytes
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
{
"name": "xml-parser",
"version": "0.0.1",
"description": "transfer XML String to JSON",
"main": "dist/xml-parser.js",
"module": "src/xml-parser.ts",
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"lint": "eslint src/**/* --fix",
"prepublishOnly": "npm run lint && npm run build",
"test": "jest"
},
"keywords": [
"xml",
"parser"
],
"repository": {
"type": "git",
"url": "git@github.com:WellerQu/xml-parser.git"
},
"author": "nix",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"ts-jest": "^26.5.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"files": [
"dist",
"typings"
]
}