-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.49 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
51
52
53
54
{
"version": "2.0.0",
"name": "about-me",
"homepage": "https://ndaidong.github.io",
"description": "Static site generator to build webpage in About.me style",
"repository": {
"type": "git",
"url": "git@github.com:ndaidong/ndaidong.github.io.git"
},
"author": "@ndaidong",
"engines": {
"node": ">= 8.6"
},
"scripts": {
"start": "DEBUG=about-me:* node index",
"build": "NODE_ENV=build DEBUG=about-me:* node -r esm build",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "tap test/start.js --coverage --reporter=spec"
},
"dependencies": {
"@rollup/plugin-replace": "^2.2.1",
"@rollup/plugin-strip": "^1.3.1",
"autoprefixer": "^9.7.3",
"bellajs": "^8.0.2",
"cheerio": "^1.0.0-rc.3",
"clean-css": "^4.2.1",
"debug": "^4.1.1",
"esm": "^3.2.25",
"express": "^4.17.1",
"html-minifier": "^4.0.0",
"postcss": "^7.0.25",
"postcss-custom-media": "^7.0.8",
"postcss-custom-properties": "^9.0.2",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.2.1",
"postcss-short": "^5.0.0",
"pretty": "^2.0.0",
"pug": "^2.0.4",
"realdom": "^3.2.4",
"rollup": "^1.27.13",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"session-file-store": "^1.3.1",
"strip-css-comments": "^4.1.0",
"terser": "^4.4.3"
},
"devDependencies": {
"eslint-config-goes": "^1.1.8",
"tap": "^14.10.5"
},
"license": "MIT"
}