-
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.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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": "cms",
"version": "1.8.2",
"description": "An elegant and easy-to-use, file-based content management system for static pages",
"author": {
"name": "Thomas Rasshofer",
"email": "hello@thomasrasshofer.com",
"url": "http://thomasrasshofer.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rasshofer/cms.git"
},
"bugs": {
"url": "https://github.com/rasshofer/cms/issues"
},
"main": "cms.js",
"keywords": [
"cms"
],
"dependencies": {
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"image-size": "^0.7.4",
"javascript-natural-sort": "^0.7.1",
"leprechaun": "0.0.2",
"lodash.camelcase": "^4.3.0",
"lodash.merge": "^4.6.2",
"lodash.template": "^4.5.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.3",
"shortcodes": "0.0.1"
},
"devDependencies": {
"coveralls": "^3.0.5",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.8.0"
},
"scripts": {
"test": "eslint '*.js' 'lib/*.js' 'tests/*.js' && jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"preferGlobal": true,
"bin": {
"cms": "cli.js"
}
}