source: node_modules/has-proto/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.9 KB
Line 
1{
2 "name": "has-proto",
3 "version": "1.0.1",
4 "description": "Does this environment have the ability to get the [[Prototype]] of an object on creation with `__proto__`?",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./package.json": "./package.json"
9 },
10 "scripts": {
11 "prepack": "npmignore --auto --commentLines=autogenerated",
12 "prepublishOnly": "safe-publish-latest",
13 "prepublish": "not-in-publish || npm run prepublishOnly",
14 "lint": "eslint --ext=js,mjs .",
15 "pretest": "npm run lint",
16 "tests-only": "tape 'test/**/*.js'",
17 "test": "npm run tests-only",
18 "posttest": "aud --production",
19 "version": "auto-changelog && git add CHANGELOG.md",
20 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/inspect-js/has-proto.git"
25 },
26 "keywords": [
27 "prototype",
28 "proto",
29 "set",
30 "get",
31 "__proto__",
32 "getPrototypeOf",
33 "setPrototypeOf",
34 "has"
35 ],
36 "author": "Jordan Harband <ljharb@gmail.com>",
37 "funding": {
38 "url": "https://github.com/sponsors/ljharb"
39 },
40 "license": "MIT",
41 "bugs": {
42 "url": "https://github.com/inspect-js/has-proto/issues"
43 },
44 "homepage": "https://github.com/inspect-js/has-proto#readme",
45 "testling": {
46 "files": "test/index.js"
47 },
48 "devDependencies": {
49 "@ljharb/eslint-config": "^21.0.0",
50 "aud": "^2.0.2",
51 "auto-changelog": "^2.4.0",
52 "eslint": "=8.8.0",
53 "in-publish": "^2.0.1",
54 "npmignore": "^0.3.0",
55 "safe-publish-latest": "^2.0.0",
56 "tape": "^5.6.1"
57 },
58 "engines": {
59 "node": ">= 0.4"
60 },
61 "auto-changelog": {
62 "output": "CHANGELOG.md",
63 "template": "keepachangelog",
64 "unreleased": false,
65 "commitLimit": false,
66 "backfillLimit": false,
67 "hideCredit": true
68 },
69 "publishConfig": {
70 "ignore": [
71 ".github/workflows"
72 ]
73 }
74}
Note: See TracBrowser for help on using the repository browser.