source: imaps-frontend/node_modules/internal-slot/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: 1.7 KB
Line 
1{
2 "name": "internal-slot",
3 "version": "1.0.7",
4 "description": "ES spec-like internal slots",
5 "main": "index.js",
6 "scripts": {
7 "prepack": "npmignore --auto --commentLines=autogenerated",
8 "prepublishOnly": "safe-publish-latest",
9 "prepublish": "not-in-publish || npm run prepublishOnly",
10 "version": "auto-changelog && git add CHANGELOG.md",
11 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
12 "pretest": "npm run lint",
13 "lint": "eslint .",
14 "tests-only": "nyc tape 'test/**/*.js'",
15 "test": "npm run tests-only",
16 "posttest": "aud --production"
17 },
18 "repository": {
19 "type": "git",
20 "url": "git+https://github.com/ljharb/internal-slot.git"
21 },
22 "keywords": [
23 "internal",
24 "slot",
25 "internal slot",
26 "ecmascript",
27 "es",
28 "spec",
29 "private",
30 "data",
31 "private data",
32 "weakmap"
33 ],
34 "author": "Jordan Harband <ljharb@gmail.com>",
35 "license": "MIT",
36 "bugs": {
37 "url": "https://github.com/ljharb/internal-slot/issues"
38 },
39 "homepage": "https://github.com/ljharb/internal-slot#readme",
40 "engines": {
41 "node": ">= 0.4"
42 },
43 "devDependencies": {
44 "@ljharb/eslint-config": "^21.1.0",
45 "aud": "^2.0.4",
46 "auto-changelog": "^2.4.0",
47 "eslint": "=8.8.0",
48 "for-each": "^0.3.3",
49 "npmignore": "^0.3.1",
50 "nyc": "^10.3.2",
51 "object-inspect": "^1.13.1",
52 "safe-publish-latest": "^2.0.0",
53 "tape": "^5.7.4"
54 },
55 "dependencies": {
56 "es-errors": "^1.3.0",
57 "hasown": "^2.0.0",
58 "side-channel": "^1.0.4"
59 },
60 "auto-changelog": {
61 "output": "CHANGELOG.md",
62 "unreleased": false,
63 "commitLimit": false,
64 "backfillLimit": false
65 },
66 "publishConfig": {
67 "ignore": [
68 ".github/workflows"
69 ]
70 }
71}
Note: See TracBrowser for help on using the repository browser.