forked from ponbike/ponstandard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "@pondevelopment/ponstandard",
"description": "JavaScript Standard Style with custom PON tweaks",
"version": "2.0.0",
"author": {
"name": "Pieter Wigboldus",
"email": "pieter.wigboldus@pon.com",
"url": "https://pon.bike/"
},
"bin": "./bin/cmd.js",
"bugs": {
"url": "https://github.com/pondevelopment/ponstandard/issues"
},
"type": "module",
"dependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@pondevelopment/eslint-config-ponstandard": "^2.0.2",
"babel-plugin-search-and-replace": "^1.1.0",
"babel-plugin-transform-import-meta": "^2.1.1",
"eslint": "^8.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^46.0.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-sonarjs": "^0.19.0",
"standard": "^17.0.0",
"standard-engine": "^15.0.0"
},
"devDependencies": {
"cross-spawn": "^7.0.3",
"merge": "^2.1.1",
"mkdirp": "^3.0.0",
"rimraf": "^5.0.0",
"run-series": "^1.1.9",
"standard": "*"
},
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/pondevelopment/ponstandard",
"keywords": [],
"license": "GPL-3",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/pondevelopment/ponstandard.git"
},
"scripts": {
"lint": "eslint -c ./eslintrc.json .",
"lint:fix": "eslint -c ./eslintrc.json . --fix",
"vulnerabilities": "npm audit --production"
},
"standard": {
"ignore": [
"tmp/**"
]
}
}