-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 KB
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
{
"name": "mit-licence",
"description": "Hosted MIT License with details controlled through this repo",
"private": true,
"type": "module",
"version": "2.0.0",
"main": "server.js",
"repository": {
"type": "git",
"url": "git@github.com:remy/mit-license.git"
},
"engines": {
"node": "24.x"
},
"author": "Remy Sharp <remy@leftlogic.com> (http://remysharp.com/)",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"serve": "node server.js",
"test": "xo && node test.js"
},
"bugs": {
"url": "https://github.com/remy/mit-license/issues"
},
"license": "MIT",
"dependencies": {
"@octokit/rest": "^19.0.4",
"@sindresorhus/is": "^4.2.0",
"any-size": "^1.2.0",
"btoa": "^1.2.1",
"cors": "^2.8.5",
"create-html-element": "^4.0.1",
"ejs": "^3.1.6",
"escape-goat": "^4.0.0",
"express": "^4.17.1",
"express-minify": "^1.0.0",
"gravatar-url": "^4.0.1",
"html-text": "^1.0.1",
"load-json-file": "^7.0.1",
"path-exists": "^5.0.0",
"postcss-middleware": "^1.1.4",
"postcss-preset-env": "^6.7.0",
"read-pkg": "^7.0.0",
"serve-favicon": "^2.5.0",
"temp-dir": "^2.0.0",
"write-json-file": "^5.0.0",
"yn": "^5.0.0"
},
"devDependencies": {
"css": "^3.0.0",
"file-ext": "^1.0.0",
"has-flag": "^5.0.1",
"nodemon": "^2.0.12",
"path-extra": "^4.3.0",
"xo": "^1.2.1"
},
"xo": {
"space": 2,
"semicolon": false
}
}