This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.66 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
{
"name": "@pinetwork-js/mrm-preset",
"description": "Pinetwork-js preset for mrm to easily init projects and keep configuration files in-sync.",
"version": "0.2.1",
"main": "build/config.json",
"prettier": "@pinetwork-js/prettier-config",
"scripts": {
"prepublish": "yarn build",
"build": "rimraf build && tsc",
"lint": "eslint 'src/**/**.{js,ts}'",
"lint-fix": "yarn lint --fix",
"format": "prettier 'src/**/**.{js,ts}' --write",
"mrm": "mrm --dir ./build",
"lint:fix": "eslint 'src/**/**.{js,ts}' --fix",
"format:check": "prettier 'src/**/**.{js,ts}' --check"
},
"packageManager": "[email protected]",
"author": "Brewal Derouet <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PiNetwork-js/mrm-preset.git"
},
"homepage": "https://github.com/PiNetwork-js/mrm-preset#readme",
"bugs": {
"url": "https://github.com/PiNetwork-js/mrm-preset/issues"
},
"dependencies": {
"mrm-core": "^7.0.0",
"semver": "^7.3.7"
},
"devDependencies": {
"@pinetwork-js/eslint-config": "^0.2.0",
"@pinetwork-js/prettier-config": "^0.1.0",
"@types/node": "^18.6.3",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-unicorn": "^43.0.2",
"mrm": "^4.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"files": [
"build"
],
"keywords": [
"pinetwork-js",
"mrm-preset",
"mrm"
]
}