-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.13 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@marvinroger/fusee",
"version": "4.0.3",
"description": "This module provides tooling to lint, format, test and write JS modules.",
"homepage": "https://github.com/marvinroger/fusee",
"bugs": "https://github.com/marvinroger/fusee/issues",
"repository": {
"type": "git",
"url": "https://github.com/marvinroger/fusee.git"
},
"author": {
"name": "Marvin ROGER",
"email": "[email protected]",
"url": "https://www.marvinroger.fr"
},
"license": "GPL-3.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/",
"build": "tsc --project ./tsconfig.build.json",
"lint": "fusee lint",
"test": "fusee test",
"prepublishOnly": "yarn clean && yarn build && yarn lint && yarn test"
},
"bin": "./dist/entrypoints/cli.js",
"engines": {
"node": "^12.20 || ^14 || ^16 || ^17"
},
"dependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"commander": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"execa": "^5.0.0",
"lint-staged": "^12.1.3",
"mrm": "^3.0.10",
"mrm-core": "^6.1.7",
"read-pkg-up": "^7.0.0",
"ts-jest": "^27.1.2",
"typedoc": "^0.22.10"
},
"devDependencies": {
"@changesets/cli": "^2.19.0",
"@marvinroger/fusee": "^4.0.3",
"@types/node": "^17.0.0",
"eslint": "^8.5.0",
"husky": "^4.3.8",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"peerDependencies": {
"eslint": "^8.5.0",
"husky": "^4.2.3",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"peerDependenciesMeta": {
"husky": {
"optional": true
}
},
"files": [
"assets/",
"dist/",
"typescript/"
],
"packageManager": "[email protected]"
}