-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.92 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@tsertkov/m9-generator",
"version": "0.0.35",
"description": "Static Site Generator",
"engines": {
"node": ">=8.10"
},
"os": [
"!win32"
],
"bin": {
"m9": "./bin/m9.js"
},
"scripts": {
"m9": "./bin/m9.js --src=docs-src --dst=docs --m9-use-src",
"m9-tasks": "./bin/m9.js --tasks --src=docs-src --m9-use-src",
"build": "npm run build-dist && npm run build-docs",
"build-dist": "rm -rf dist/* && babel -d dist src",
"build-docs": "./bin/m9.js build --src=docs-src --dst=docs",
"dev": "./bin/m9.js dev --src=docs-src --dst=docs --m9-use-src",
"test": "npm run test-src && npm run test-docs",
"test-src": "standard --verbose *.js src/*.js src/**/*.js | snazzy",
"test-docs": "./bin/m9.js test --src=docs-src --m9-use-src",
"postversion": "git push && git push --tags && npm publish --access public"
},
"author": "Aleksandr Tsertkov <tsertkov@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.4",
"marked": "^0.7.0",
"snazzy": "^8.0.0"
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"aws-sdk": "^2.556.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"css-loader": "^3.2.0",
"del": "^5.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.5",
"gulp": "^4.0.2",
"gulp-standard": "^14.0.0",
"handlebars": "^4.4.5",
"handlebars-helpers": "^0.10.0",
"handlebars-loader": "^1.7.1",
"lodash": "^4.17.15",
"metalsmith": "^2.3.0",
"metalsmith-debug": "^1.2.0",
"mini-css-extract-plugin": "^0.8.0",
"plugin-error": "^1.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"require-dir": "^1.2.0",
"s3-client": "^4.4.2",
"slug": "^1.1.0",
"style-loader": "^1.0.0",
"toml": "^3.0.0",
"ware": "^1.3.0",
"webpack": "^4.41.2",
"webpack-dev-middleware": "^3.7.2",
"webpack-manifest-plugin": "^2.2.0",
"webpack-visualizer-plugin": "^0.1.11",
"yargs": "^14.2.0"
},
"peerDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"aws-sdk": "^2.556.0",
"babel-loader": "^8.0.6",
"browser-sync": "^2.26.7",
"css-loader": "^3.2.0",
"del": "^5.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"glob": "^7.1.5",
"gulp": "^4.0.2",
"gulp-standard": "^14.0.0",
"handlebars": "^4.4.5",
"handlebars-helpers": "^0.10.0",
"handlebars-loader": "^1.7.1",
"lodash": "^4.17.15",
"metalsmith": "^2.3.0",
"metalsmith-debug": "^1.2.0",
"mini-css-extract-plugin": "^0.8.0",
"plugin-error": "^1.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"require-dir": "^1.2.0",
"s3-client": "^4.4.2",
"slug": "^1.1.0",
"style-loader": "^1.0.0",
"toml": "^3.0.0",
"ware": "^1.3.0",
"webpack": "^4.41.2",
"webpack-dev-middleware": "^3.7.2",
"webpack-manifest-plugin": "^2.2.0",
"webpack-visualizer-plugin": "^0.1.11",
"yargs": "^14.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsertkov/m9-generator.git"
},
"bugs": {
"url": "https://github.com/tsertkov/m9-generator/issues"
},
"homepage": "https://m9-generator.com",
"main": "index.js"
}