-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "larvitcms",
"version": "3.0.153",
"description": "Simple blog module with admin GUI for larvitadmingui",
"author": {
"name": "Mikael 'Lilleman' Göransson",
"email": "lilleman@larvit.se",
"url": "http://larvit.se"
},
"private": false,
"dependencies": {
"larvitdb": "3.2.139",
"larvitdbmigration": "7.0.188",
"larvitslugify": "2.0.1",
"larvitutils": "5.1.173",
"lodash": "4.18.1",
"uuid": "11.1.0"
},
"devDependencies": {
"eslint": "8.57.1",
"mocha": "11.7.5",
"nyc": "18.0.0"
},
"keywords": [
"cms"
],
"main": "cms.js",
"repository": {
"url": "https://github.com/larvit/larvitcms",
"type": "git"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/larvit/larvitcms/issues"
},
"homepage": "https://github.com/larvit/larvitcms",
"scripts": {
"lint": "eslint *.js test/*.js dbmigration/*.js",
"test:unit": "mocha --exit --bail './test/*.js'",
"coverage": "nyc --reporter lcov npm run test:unit",
"test": "npm run lint && npm run coverage"
},
"license": "MIT",
"maintainers": [
{
"name": "lilleman",
"email": "lilleman@larvit.se"
}
]
}