-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·60 lines (60 loc) · 1.28 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
54
55
56
57
58
59
60
{
"name": "alex-r-bigelow-gh-pages",
"version": "0.1.0",
"description": "Personal site for Alex Bigelow",
"repository": {
"type": "git"
},
"author": "Alex Bigelow",
"dependencies": {
"@ukijs/ui": "^0.2.5",
"d3": "^7.9.0",
"less": "^4.2.0",
"uki": "^0.7.9"
},
"scripts": {
"lint": "eslint '**/*.js' --quiet",
"lintFix": "eslint **/*.js' --fix",
"serve": "serve .",
"build": "node ./build.js"
},
"eslintConfig": {
"extends": "standard",
"rules": {
"semi": [
2,
"always"
],
"no-extra-semi": 2,
"semi-spacing": [
2,
{
"before": false,
"after": true
}
],
"space-before-function-paren": "off"
},
"globals": {
"globalThis": false
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "none"
},
"devDependencies": {
"bibtex-parse-js": "^0.0.23",
"eslint": "^9.4.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"gray-matter": "^4.0.3",
"serve": "^14.2.3",
"shelljs": "^0.8.5",
"showdown": "^2.1.0"
}
}