-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.63 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
39
40
41
42
43
44
45
46
{
"name": "@jsonic/feed",
"version": "0.1.0",
"description": "Parses RSS (0.90, 0.91, 0.92, 1.0, 2.0) and Atom (0.3, 1.0) feeds into a typed structure, defaulting to a normalized Atom shape.",
"author": "Richard Rodger (http://richardrodger.com)",
"license": "MIT",
"main": "dist/feed.js",
"types": "dist/feed.d.ts",
"homepage": "https://github.com/jsonicjs/feed",
"repository": "github:jsonicjs/feed",
"keywords": [
"rss",
"atom",
"rdf",
"feed",
"parser",
"jsonic",
"xml"
],
"scripts": {
"test": "node --enable-source-maps --test \"dist-test/*.test.js\"",
"test-some": "node --enable-source-maps --test-name-pattern=\"$npm_config_pattern\" --test \"dist-test/*.test.js\"",
"watch": "tsc --build src test -w",
"build": "tsc --build src test",
"clean": "rm -rf dist dist-test node_modules yarn.lock package-lock.json",
"reset": "npm run clean && npm i && npm run build && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i && npm run repo-publish-quick",
"repo-publish-quick": "npm run build && npm run test && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org "
},
"peerDependencies": {
"jsonic": "^2.28.0",
"@jsonic/xml": "^0.1.1"
},
"devDependencies": {
"@jsonic/xml": "^0.1.1",
"@types/node": "25.6.0",
"jsonic": "^2.28.0",
"typescript": "6.0.3"
},
"files": [
"src",
"dist",
"LICENSE"
]
}