generated from shgysk8zer0/blank-repo
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@shgysk8zer0/konami",
"version": "1.1.1",
"description": "A simple JavaScript module for adding Konami Code Easter Eggs",
"keywords": [
"konami",
"konami-js",
"konami-code",
"easter-egg"
],
"main": "./konami.cjs",
"module": "./konami.js",
"unpkg": "./konami.js",
"private": false,
"type": "module",
"engines": {
"node": ">=15.3.0"
},
"exports": {
".": {
"import": "./konami.js",
"require": "./konami.cjs"
},
"./*.js": {
"import": "./*.js"
},
"./*.mjs": {
"import": "./*.js"
}
},
"scripts": {
"test": "npm run lint:js",
"preversion": "npm test",
"prepare": "npm run build",
"build": "npm run build:js",
"build:js": "rollup -c rollup.config.js",
"lint:js": "eslint .",
"fix:js": "eslint --fix .",
"fix": "npm run fix:js",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/konami.git"
},
"author": "Chris Zuber <[email protected]>",
"license": "MIT",
"funding": [
{
"type": "librepay",
"url": "https://liberapay.com/shgysk8zer0"
},
{
"type": "github",
"url": "https://github.com/sponsors/shgysk8zer0"
}
],
"bugs": {
"url": "https://github.com/shgysk8zer0/konami/issues"
},
"homepage": "https://shgysk8zer0.github.io/konami/",
"devDependencies": {
"@shgysk8zer0/eslint-config": "^1.0.1",
"@shgysk8zer0/js-utils": "^1.0.1"
}
}