-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"packageManager": "[email protected]",
"devDependencies": {
"@reactgjs/gest": "^0.3.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"git-hook-tasks": "ncpa0cpl/git-hook-tasks",
"gjs-esm-types": "^0.0.4",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "^5.1.3"
},
"name": "path-gjsify",
"version": "1.0.0",
"main": "./dist/path.js",
"scripts": {
"fix:lint": "eslint --fix ./src",
"fix:prettier": "prettier -w ./src",
"test:lint": "eslint ./src",
"test:prettier": "prettier -c ./src",
"test:tsc": "tsc --noEmit",
"test:unit": "gest",
"build": "tsc"
},
"keywords": [
"gjs",
"path",
"node:path",
"polyfill"
],
"repository": {
"url": "https://github.com/ncpa0/path-gjsify"
},
"description": "The 'path' module from Node.js for the GJS environment.",
"license": "MIT",
"author": {
"name": "Szymon Bretner",
"email": "[email protected]"
}
}