-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "notes",
"version": "0.0.1",
"description": "My notes",
"private": true,
"type": "module",
"repository": "VovanR/notes",
"author": "Vladimir Rodkin <[email protected]> (https://github.com/VovanR)",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "http-server .",
"test": "npm run test:js && npm run test:css && npm run test:spellcheck",
"test:spellcheck": "yaspeller --dictionary ./dictionary.json ./notes/*.md",
"test:js": "xo && node --test",
"test:css": "stylelint app/css/*.css"
},
"devDependencies": {
"http-server": "^14.1.1",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"xo": "0.56.0",
"yaspeller": "^10.0.1"
},
"bugs": {
"url": "https://github.com/VovanR/notes/issues"
},
"homepage": "https://vovanr.github.io/notes/",
"xo": {
"semicolon": false,
"envs": [
"browser"
],
"rules": {
"import/extensions": 0,
"operator-linebreak": [
"error",
"after"
]
}
}
}