source: frontend/node_modules/side-channel-list/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.2 KB
RevLine 
[9af201e]1{
2 "name": "side-channel-list",
3 "version": "1.0.1",
4 "description": "Store information about any JS value in a side channel, using a linked list",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./package.json": "./package.json"
9 },
10 "types": "./index.d.ts",
11 "scripts": {
12 "prepack": "npmignore --auto --commentLines=autogenerated",
13 "prepublishOnly": "safe-publish-latest",
14 "prepublish": "not-in-publish || npm run prepublishOnly",
15 "prelint": "evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
16 "lint": "eslint --ext=js,mjs .",
17 "postlint": "tsc -p . && attw -P",
18 "pretest": "npm run lint",
19 "tests-only": "nyc tape 'test/**/*.js'",
20 "test": "npm run tests-only",
21 "posttest": "npx npm@'>= 10.2' audit --production",
22 "version": "auto-changelog && git add CHANGELOG.md",
23 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
24 },
25 "repository": {
26 "type": "git",
27 "url": "git+https://github.com/ljharb/side-channel-list.git"
28 },
29 "keywords": [],
30 "author": "Jordan Harband <ljharb@gmail.com>",
31 "funding": {
32 "url": "https://github.com/sponsors/ljharb"
33 },
34 "license": "MIT",
35 "bugs": {
36 "url": "https://github.com/ljharb/side-channel-list/issues"
37 },
38 "homepage": "https://github.com/ljharb/side-channel-list#readme",
39 "dependencies": {
40 "es-errors": "^1.3.0",
41 "object-inspect": "^1.13.4"
42 },
43 "devDependencies": {
44 "@arethetypeswrong/cli": "^0.18.2",
45 "@ljharb/eslint-config": "^22.2.2",
46 "@ljharb/tsconfig": "^0.3.2",
47 "@types/object-inspect": "^1.13.0",
48 "@types/tape": "^5.8.1",
49 "auto-changelog": "^2.5.0",
50 "eclint": "^2.8.1",
51 "encoding": "^0.1.13",
52 "eslint": "^8.57.1",
53 "evalmd": "^0.0.19",
54 "in-publish": "^2.0.1",
55 "npmignore": "^0.3.5",
56 "nyc": "^10.3.2",
57 "safe-publish-latest": "^2.0.0",
58 "tape": "^5.9.0",
59 "typescript": "next"
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 "engines": {
75 "node": ">= 0.4"
76 }
77}
Note: See TracBrowser for help on using the repository browser.