-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.63 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "simple-get-json",
"version": "10.0.0",
"main": "dist/index-polyglot.cjs",
"module": "dist/index-es.js",
"browser": "dist/index.js",
"type": "module",
"exports": {
"types": "./dist/src/index-polyglot.d.ts",
"import": "./dist/index-polyglot.mjs",
"require": "./dist/index-polyglot.cjs",
"browser": "./dist/index.js"
},
"author": "Brett Zamir",
"contributors": [],
"license": "MIT",
"description": "getJSON function similar to that of jQuery's for Node or the browser",
"browserslist": [
"cover 100%"
],
"scripts": {
"tsc": "tsc",
"license-badge": "license-badger --corrections --uncategorizedLicenseTemplate \"\\${license} (\\${name} (\\${version}))\" --filteredTypes=nonempty --textTemplate \"License types\n(project, deps, and bundled devDeps)\" --packageJson --production badges/licenses-badge.svg",
"license-badge-dev": "license-badger --corrections --filteredTypes=nonempty --textTemplate \"License types\n(all devDeps)\" --allDevelopment badges/licenses-badge-dev.svg",
"license-badges": "npm run license-badge && npm run license-badge-dev",
"prepublishOnly": "echo 'disabling npm run license-badges for now'",
"eslint-badge": "eslint-formatter-badger --outputPath badges/eslint-badge.svg --file .",
"eslint-third-party-badge": "eslint-formatter-badger --mainTemplate=\"ESLint 3rd party light audit (\\${ruleMapCount} rules in \\${numFiles} files)\" --filteredTypes intrusive,vulnerability --ruleMap .eslintRuleTypeMap.json --outputPath badges/eslint-third-party.svg --noEslintInlineConfig --noUseEslintIgnore --noUseEslintrc --eslintConfigPath .eslintrc-3rdparty.cjs `es-file-traverse --file ./src/index.js --file ./src/index-polyglot.js --node`",
"eslint-badges": "npm run eslint-badge && npm run eslint-third-party-badge",
"coverage-badge": "coveradge badges/coverage-badge.svg",
"eslint": "eslint .",
"lint": "npm run eslint",
"start": "static -p 8089",
"mocha": "rm -Rf node_modules/.cache && c8 mocha --experimental-modules",
"rollup": "rollup -c",
"test": "npm run eslint && npm run rollup && npm run mocha && npm run coverage-badge",
"browser-test": "npm run eslint && npm run rollup && open-cli http://127.0.0.1:8089/test/index.html && npm start"
},
"c8": {
"reporter": [
"json-summary",
"text"
]
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"local-xmlhttprequest": "^2.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.27.7",
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
"@babel/register": "^7.27.1",
"@rollup/plugin-babel": "^6.0.4",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"babel-plugin-transform-import-meta": "^2.3.3",
"c8": "^10.1.3",
"chai": "^5.2.0",
"coveradge": "^0.8.2",
"eslint": "^9.30.0",
"eslint-config-ash-nazg": "^38.0.2",
"eslint-formatter-badger": "^0.10.0",
"filesize-badger": "^0.4.0",
"globals": "^16.2.0",
"http-server": "^14.1.1",
"license-badger": "^0.21.1",
"mocha": "^11.7.1",
"mocha-badge-generator": "^0.11.0",
"mocha-multi-reporters": "^1.5.1",
"open-cli": "^8.0.0",
"rollup": "4.44.1",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/brettz9/getJSON.git"
},
"bugs": {
"url": "https://github.com/brettz9/getJSON/issues"
},
"homepage": "https://github.com/brettz9/getJSON",
"keywords": [
"json"
]
}