-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
61
62
63
64
65
66
67
{
"name": "flexi-site-gen",
"version": "1.0.0",
"bugs": {
"url": "https://github.com/nponiros/FlexiSiteGen/issues"
},
"license": "MIT",
"author": "Nikolas Poniros <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nponiros/FlexiSiteGen.git"
},
"dependencies": {
"cssnano": "4.1.10",
"extendify": "1.0.0",
"fingerprinting": "1.0.1",
"front-matter": "3.0.1",
"fs-extra": "7.0.1",
"highlight.js": "9.14.2",
"html-minifier": "3.5.21",
"imagemin": "6.1.0",
"immutability-helper": "3.0.0",
"js-yaml": "3.12.1",
"klaw-sync": "^6.0.0",
"markdown-it": "8.4.2",
"moment": "2.24.0",
"postcss": "7.0.14",
"progress": "2.0.3",
"pug": "2.0.3",
"terser": "3.16.1",
"uglify-js": "3.4.9",
"yargs": "13.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"preferGlobal": true,
"bin": {
"flexi-site-gen": "./bin/main.js"
},
"scripts": {
"lint": "eslint bin/main.js 'lib/**/*.js' 'spec/**/*.js' 'e2e_test/test.js'",
"lint:fix": "eslint --fix bin/main.js 'lib/**/*.js' 'spec/**/*.js' 'e2e_test/test.js'",
"test": "npm run lint; npm run test:unit; npm run test:e2e",
"test:e2e": "node ./e2e_test/test.js",
"test:unit": "jasmine",
"coverage": "istanbul cover --include-all-sources coverage.js",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"description": "A flexible static site generator",
"keywords": [
"blog",
"static site"
],
"devDependencies": {
"eslint": "5.14.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"istanbul": "0.4.5",
"jasmine": "3.3.1",
"publish-please": "5.4.3"
}
}