UNPKG

1.84 kBJSONView Raw
1{
2 "name": "js2xmlparser",
3 "version": "4.0.1",
4 "description": "Parses JavaScript objects into XML",
5 "keywords": [
6 "convert",
7 "converter",
8 "javascript",
9 "js",
10 "json",
11 "object",
12 "objects",
13 "parse",
14 "parser",
15 "xml"
16 ],
17 "license": "Apache-2.0",
18 "author": {
19 "name": "Michael Kourlas",
20 "email": "michael@kourlas.com"
21 },
22 "files": [
23 "lib",
24 "CHANGES.md",
25 "LICENSE.md",
26 "NOTICE.md",
27 "package.json",
28 "README.md"
29 ],
30 "main": "./lib/main.js",
31 "typings": "./lib/main",
32 "repository": {
33 "type": "git",
34 "url": "git://github.com/michaelkourlas/node-js2xmlparser.git"
35 },
36 "scripts": {
37 "build": "npm run-script prod && npm run-script test-prod && npm run-script docs",
38 "clean": "rimraf lib",
39 "clean-docs": "rimraf docs",
40 "clean-test": "rimraf test/lib",
41 "dev": "npm run-script clean && npm run-script lint && tsc -p tsconfig.json --sourceMap",
42 "docs": "npm run-script clean-docs && typedoc --mode file --module commonjs --out docs --target es5 --tsconfig tsconfig.json",
43 "lint": "eslint . --ext .ts",
44 "prod": "npm run-script clean && npm run-script lint && tsc -p tsconfig.json",
45 "test-dev": "npm run-script clean-test && tsc -p test/tsconfig.json --sourceMap && mocha test/lib",
46 "test-prod": "npm run-script clean-test && tsc -p test/tsconfig.json && mocha test/lib"
47 },
48 "dependencies": {
49 "xmlcreate": "^2.0.3"
50 },
51 "devDependencies": {
52 "@types/chai": "^4.2.8",
53 "@types/mocha": "^7.0.1",
54 "@typescript-eslint/eslint-plugin": "^2.18.0",
55 "@typescript-eslint/parser": "^2.18.0",
56 "chai": "^4.2.0",
57 "eslint": "^6.8.0",
58 "mocha": "^7.0.1",
59 "rimraf": "^3.0.1",
60 "typedoc": "^0.16.9",
61 "typescript": "^3.7.5"
62 }
63}