-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "@le-phare/konami",
"version": "1.3.2",
"description": "Simple konami code",
"main": "src/konami.js",
"repository": {
"type": "git",
"url": "git+https://github.com/le-phare/konami.git"
},
"keywords": [
"konami-code"
],
"author": "Nicolas LAURENT",
"bugs": {
"url": "https://github.com/le-phare/konami/issues"
},
"homepage": "https://github.com/le-phare/konami#readme",
"scripts": {
"test": "npm run lint",
"lint": "standard src",
"lint:fix": "standard --fix",
"build": "babel src -d dist && terser --compress --mangle --output dist/konami.min.js -- dist/konami.js",
"pre-publish": "npm run build",
"preversion": "npm test",
"release": "standard-version",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"terser": "^5.16.2"
},
"standard": {
"ignore": [
"/dist/"
]
}
}