source: imaps-frontend/node_modules/which-builtin-type/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{
2 "name": "which-builtin-type",
3 "version": "1.1.4",
4 "description": "What is the type of this builtin JS value?",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./package.json": "./package.json"
9 },
10 "sideEffects": false,
11 "scripts": {
12 "prepack": "npmignore --auto --commentLines=autogenerated",
13 "prepublish": "not-in-publish || npm run prepublishOnly",
14 "prepublishOnly": "safe-publish-latest",
15 "prelint": "evalmd README.md",
16 "lint": "eslint --ext=js,mjs .",
17 "pretest": "npm run lint",
18 "tests-only": "nyc tape 'test/**/*.js'",
19 "test": "npm run tests-only",
20 "posttest": "aud --production",
21 "version": "auto-changelog && git add CHANGELOG.md",
22 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
23 },
24 "repository": {
25 "type": "git",
26 "url": "git+https://github.com/inspect-js/which-builtin-type.git"
27 },
28 "keywords": [
29 "type",
30 "builtin",
31 "ecmascript"
32 ],
33 "author": "Jordan Harband <ljharb@gmail.com>",
34 "funding": {
35 "url": "https://github.com/sponsors/ljharb"
36 },
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/inspect-js/which-builtin-type/issues"
40 },
41 "homepage": "https://github.com/inspect-js/which-builtin-type#readme",
42 "engines": {
43 "node": ">= 0.4"
44 },
45 "devDependencies": {
46 "@ljharb/eslint-config": "^21.1.1",
47 "aud": "^2.0.4",
48 "auto-changelog": "^2.4.0",
49 "available-typed-arrays": "^1.0.7",
50 "eslint": "=8.8.0",
51 "evalmd": "^0.0.19",
52 "for-each": "^0.3.3",
53 "has-bigints": "^1.0.2",
54 "has-symbols": "^1.0.3",
55 "in-publish": "^2.0.1",
56 "make-arrow-function": "^1.2.0",
57 "make-async-function": "^1.0.0",
58 "make-generator-function": "^2.0.0",
59 "npmignore": "^0.3.1",
60 "nyc": "^10.3.2",
61 "object-inspect": "^1.13.2",
62 "object.assign": "^4.1.5",
63 "safe-publish-latest": "^2.0.0",
64 "tape": "^5.8.1"
65 },
66 "auto-changelog": {
67 "output": "CHANGELOG.md",
68 "template": "keepachangelog",
69 "unreleased": false,
70 "commitLimit": false,
71 "backfillLimit": false,
72 "hideCredit": true
73 },
74 "dependencies": {
75 "function.prototype.name": "^1.1.6",
76 "has-tostringtag": "^1.0.2",
77 "is-async-function": "^2.0.0",
78 "is-date-object": "^1.0.5",
79 "is-finalizationregistry": "^1.0.2",
80 "is-generator-function": "^1.0.10",
81 "is-regex": "^1.1.4",
82 "is-weakref": "^1.0.2",
83 "isarray": "^2.0.5",
84 "which-boxed-primitive": "^1.0.2",
85 "which-collection": "^1.0.2",
86 "which-typed-array": "^1.1.15"
87 },
88 "publishConfig": {
89 "ignore": [
90 ".github/workflows"
91 ]
92 }
93}
Note: See TracBrowser for help on using the repository browser.