source: frontend/node_modules/set-proto/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[9af201e]1{
2 "name": "set-proto",
3 "version": "1.0.0",
4 "description": "Robustly set the [[Prototype]] of an object",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./Reflect.setPrototypeOf": "./Reflect.setPrototypeOf.js",
9 "./Object.setPrototypeOf": "./Object.setPrototypeOf.js",
10 "./package.json": "./package.json"
11 },
12 "scripts": {
13 "prepack": "npmignore --auto --commentLines=autogenerated",
14 "prepublish": "not-in-publish || npm run prepublishOnly",
15 "prepublishOnly": "safe-publish-latest",
16 "pretest": "npm run --silent lint",
17 "test": "npm run tests-only",
18 "posttest": "npx npm@\">=10.2\" audit --production",
19 "tests-only": "nyc tape 'test/**/*.js'",
20 "prelint": "evalmd README.md",
21 "lint": "eslint --ext=js,mjs .",
22 "postlint": "tsc && attw -P",
23 "version": "auto-changelog && git add CHANGELOG.md",
24 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
25 },
26 "repository": {
27 "type": "git",
28 "url": "git+https://github.com/ljharb/set-proto.git"
29 },
30 "keywords": [
31 "set",
32 "proto",
33 "prototype",
34 "setPrototypeOf",
35 "[[Prototype]]"
36 ],
37 "author": "Jordan Harband <ljharb@gmail.com>",
38 "license": "MIT",
39 "bugs": {
40 "url": "https://github.com/ljharb/set-proto/issues"
41 },
42 "homepage": "https://github.com/ljharb/set-proto#readme",
43 "dependencies": {
44 "dunder-proto": "^1.0.1",
45 "es-errors": "^1.3.0",
46 "es-object-atoms": "^1.0.0"
47 },
48 "devDependencies": {
49 "@arethetypeswrong/cli": "^0.17.2",
50 "@ljharb/eslint-config": "^21.1.1",
51 "@ljharb/tsconfig": "^0.2.3",
52 "@types/tape": "^5.8.0",
53 "auto-changelog": "^2.5.0",
54 "eslint": "=8.8.0",
55 "evalmd": "^0.0.19",
56 "in-publish": "^2.0.1",
57 "npmignore": "^0.3.1",
58 "nyc": "^10.3.2",
59 "safe-publish-latest": "^2.0.0",
60 "tape": "^5.9.0",
61 "typescript": "next"
62 },
63 "engines": {
64 "node": ">= 0.4"
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 "publishConfig": {
75 "ignore": [
76 ".github/workflows"
77 ]
78 },
79 "testling": {
80 "files": "test/index.js"
81 }
82}
Note: See TracBrowser for help on using the repository browser.