-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.2 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
{
"name": "@lunelson/penny",
"version": "1.2.1",
"description": "On-the-fly live pre-processing dev server / static-site builder",
"keywords": [
"browser-sync",
"connect",
"es6",
"pug",
"sass",
"webpack"
],
"homepage": "https://github.com/lunelson/penny#readme",
"bugs": {
"url": "https://github.com/lunelson/penny/issues"
},
"license": "MIT",
"author": "Lu Nelson",
"main": "index.js",
"bin": {
"penny": "bin/cli.js"
},
"directories": {
"lib": "lib",
"bin": "bin",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunelson/penny.git"
},
"scripts": {
"debug": "cross-env NODE_ENV=development nodemon --inspect --watch lib test/api-test.js",
"dev": "cross-env NODE_ENV=development node serve.js",
"start": "cross-env node serve.js",
"test": "echo \"Tests are still TBD\" && exit 0",
"test-serve": "cross-env NODE_ENV=development nodemon --watch lib bin/cli.js serve test-src",
"test-build": "cross-env NODE_ENV=production node bin/cli.js build test-src test-out"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.51",
"@babel/plugin-external-helpers": "^7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.0.0-beta.51",
"ajv": "^5.5.2",
"autoprefixer": "^8.6.3",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^3.1.1",
"browser-sync": "^2.24.5",
"bs-html-injector": "^3.0.3",
"chance": "^1.0.16",
"commander": "^2.15.1",
"cosmiconfig": "^4.0.0",
"cp-file": "^5.0.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"date-fns": "^1.29.0",
"dayjs": "^1.6.10",
"delete": "^1.1.0",
"eslint": "^4.19.1",
"eslint-import-resolver-babel-module": "^5.0.0-beta.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"faker": "^4.1.0",
"filter-files": "^0.4.0",
"gray-matter": "^4.0.1",
"image-size": "^0.6.3",
"js-string-escape": "^1.0.1",
"lodash": "^4.17.10",
"lodash-webpack-plugin": "^0.11.4",
"markdown-it": "^8.4.1",
"markdown-it-attrs": "^1.2.1",
"markdown-it-block-image": "0.0.3",
"markdown-it-custom-block": "^0.1.1",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-mark": "^2.0.0",
"memory-fs": "^0.4.1",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"node-sass": "^4.9.0",
"node-sass-utils": "^1.1.2",
"nodemon": "^1.17.5",
"postcss": "^6.0.23",
"postcss-clean": "^1.1.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"read-data": "^1.1.0",
"read-pkg-up": "^3.0.0",
"read-yaml": "^1.1.0",
"recursive-readdir": "^2.2.2",
"resolve": "^1.8.1",
"serve-favicon": "^2.5.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"uncolor": "^0.4.0",
"vue-loader": "^15.2.4",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.12.1",
"write": "^1.0.3",
"yn": "^2.0.0"
},
"devDependencies": {},
"engines": {
"node": ">=8"
},
"publishConfig": {
"access": "public"
}
}