-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "@idangoldman/plate",
"title": "PLATE",
"description": "A simple boilerplate for web development",
"author": "Idan Goldman",
"license": "MIT",
"version": "0.6.0",
"homepage": "https://github.com/idangoldman/plate/",
"repository": {
"type": "git",
"url": "https://github.com/idangoldman/plate.git"
},
"bugs": {
"url": "https://github.com/idangoldman/plate/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"bin": {
"plate": "./bin/plate.fish"
},
"imports": {
"#root/*": "./src/*",
"#tests/*": "./tests/*"
},
"files": [
"bin",
"configs",
"lib",
"Makefile",
"makefiles",
"src"
],
"scripts": {
"help": "make help"
},
"dependencies": {
"@coffeelint/cli": "5.2.11",
"@cucumber/cucumber": "11.0.1",
"@cucumber/pretty-formatter": "1.0.1",
"@eslint/js": "9.13.0",
"chai": "^5.1.1",
"coffeescript": "2.7.0",
"esbuild": "0.24.0",
"eslint": "9.13.0",
"globals": "15.11.0",
"lodash": "4.17.21",
"prettier": "3.3.3",
"yaml": "2.6.0"
}
}