-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (37 loc) · 1.07 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
{
"name": "fsp-xml-parser",
"version": "1.0.0",
"description": "A better xml parser written in pure typescript and works well with both node and deno.",
"main": "./dist/cjs/parser.js",
"module": "./dist/esm/parser.js",
"typings": "./dist/cjs/parser.d.ts",
"scripts": {
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig-esm.json",
"build:all": "yarn build:cjs && yarn build:esm",
"pretest:cjs": "yarn build:all",
"test:cjs": "jest ./test/cjs.test.js",
"test:deno": "deno test -A ./test/deno.test.ts",
"test:all": "yarn test:cjs && yarn test:deno"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FullStackPlayer/ts-xml-parser.git"
},
"keywords": [
"typescript",
"xml",
"parser"
],
"author": "FullStackPlayer",
"license": "GPL-3.0",
"homepage": "https://github.com/FullStackPlayer/ts-xml-parser",
"dependencies": {},
"devDependencies": {
"jest": "^26.6.3"
},
"files": [
"/dist",
"/test"
]
}