-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "jstoxml",
"version": "5.0.2",
"description": "Converts JavaScript/JSON to XML (for RSS, Podcasts, AMP, etc.)",
"homepage": "http://github.com/davidcalhoun/jstoxml",
"keywords": [
"amp",
"google amp",
"json",
"podcast",
"rss",
"sitemap",
"site map",
"xml"
],
"main": "dist/jstoxml.js",
"author": "David Calhoun <david.b.calhoun@gmail.com>",
"license": "MIT",
"repository": "git://github.com/davidcalhoun/jstoxml",
"scripts": {
"dist": "./dist.sh",
"prepare": "./dist.sh",
"test": "rm -rf dist && ./dist.sh && mocha test.js",
"patch": "npm version patch && npm run npm-publish",
"minor": "npm version minor && npm run npm-publish",
"major": "npm version major && npm run npm-publish",
"npm-publish": "npm publish && git push && git push --tags",
"bump": "npm outdated & npm update && npm audit fix && npm test"
},
"unpkg": "dist/jstoxml-min.js",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-modules-umd": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"eslint": "^8.5.0",
"mocha": "^10",
"prettier": "^3.2.4",
"uglify-js": "^3.15.2"
}
}