-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.43 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
{
"name": "fmwk.js",
"title": "fmwk.js",
"description": "Opinionated javascript framework, built with jQuery and Rails in mind.",
"version": "0.1.0",
"author": "Idan Goldman",
"license": "MIT",
"main": "src/index.js",
"homepage": "https://github.com/idangoldman/fmwk",
"repository": {
"type": "git",
"url": "https://github.com/idangoldman/fmwk.git"
},
"bugs": {
"url": "https://github.com/idangoldman/fmwk/issues"
},
"engines": {
"node": ">=20.7.0",
"pnpm": ">=8.10.2"
},
"keywords": [],
"type": "module",
"imports": {
"#root/*": "./*"
},
"scripts": {
"autofix": "eslint --fix --ext .js ./src",
"clean": "rm -frv node_modules",
"reload": "pnpm run clean && pnpm install --frozen-lockfile",
"load": "pnpm run clean && pnpm install",
"test:dev": "node --test --watch tests/*.js",
"test": "node --test tests/*.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-regex": "^1.10.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.3"
}
}