source: frontend/node_modules/generator-function/package.json

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

Fix frontend appearance

  • Property mode set to 100644
File size: 2.3 KB
Line 
1{
2 "name": "generator-function",
3 "version": "2.0.1",
4 "description": "A function that returns the normally hidden `GeneratorFunction` constructor",
5 "main": "./legacy.js",
6 "jsnext:main": "./index.mjs",
7 "module": "./index.mjs",
8 "exports": {
9 ".": [
10 {
11 "module-sync": "./require.mjs",
12 "import": "./index.mjs",
13 "default": "./index.js"
14 },
15 "./index.js"
16 ],
17 "./package.json": "./package.json"
18 },
19 "sideEffects": false,
20 "scripts": {
21 "prepack": "npmignore --auto --commentLines=autogenerated",
22 "prepublish": "not-in-publish || npm run prepublishOnly",
23 "prepublishOnly": "safe-publish-latest",
24 "pretest": "npm run --silent lint",
25 "test": "npm run tests-only",
26 "posttest": "npx npm@\">=10.2\" audit --production",
27 "tests-only": "nyc tape 'test/**/*.js'",
28 "prelint": "evalmd README.md",
29 "lint": "eslint --ext=js,mjs .",
30 "postlint": "tsc && attw -P",
31 "version": "auto-changelog && git add CHANGELOG.md",
32 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
33 },
34 "repository": {
35 "type": "git",
36 "url": "git+https://github.com/TimothyGu/generator-function.git"
37 },
38 "keywords": [
39 "generator",
40 "function",
41 "native"
42 ],
43 "author": "Jordan Harbamd <ljharb@gmail.com>",
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/TimothyGu/generator-function/issues"
47 },
48 "homepage": "https://github.com/TimothyGu/generator-function#readme",
49 "devDependencies": {
50 "@arethetypeswrong/cli": "^0.18.2",
51 "@ljharb/eslint-config": "^21.2.0",
52 "@ljharb/tsconfig": "^0.3.2",
53 "@types/semver": "^6.2.7",
54 "@types/tape": "^5.8.1",
55 "auto-changelog": "^2.5.0",
56 "encoding": "^0.1.13",
57 "eslint": "=8.8.0",
58 "evalmd": "^0.0.19",
59 "generator-function": "file:.",
60 "get-proto": "^1.0.1",
61 "in-publish": "^2.0.1",
62 "npmignore": "^0.3.1",
63 "nyc": "^10.3.2",
64 "safe-publish-latest": "^2.0.0",
65 "semver": "^6.3.1",
66 "tape": "^5.9.0",
67 "typescript": "next"
68 },
69 "engines": {
70 "node": ">= 0.4"
71 },
72 "auto-changelog": {
73 "output": "CHANGELOG.md",
74 "template": "keepachangelog",
75 "unreleased": false,
76 "commitLimit": false,
77 "backfillLimit": false,
78 "hideCredit": true
79 },
80 "publishConfig": {
81 "ignore": [
82 ".github/workflows"
83 ]
84 },
85 "testling": {
86 "files": "test/index.js"
87 }
88}
Note: See TracBrowser for help on using the repository browser.