-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "@mojojs/create-full-app",
"version": "1.0.2",
"description": "Create a well structured mojo.js application",
"keywords": [
"mojojs"
],
"dependencies": {
"@mojojs/core": "^1.2.1",
"@mojojs/path": "^1.5.2",
"@mojojs/util": "^1.0.0"
},
"bin": "./bin.js",
"type": "module",
"author": "Sebastian Riedel <[email protected]>",
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^8.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tap": "^21.0.1"
},
"files": [
"bin.js"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mojolicious/create-full-app.git"
},
"bugs": {
"url": "https://github.com/mojolicious/create-full-app/issues"
},
"scripts": {
"coverage": "c8 tap --disable-coverage --allow-empty-coverage test/*.js",
"lint": "eslint \"test/*.js\" \"*.js\"",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish",
"test": "tap --disable-coverage --allow-empty-coverage test/*.js"
}
}