-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 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
55
56
{
"name": "@mspg/core",
"version": "0.0.1",
"description": "magic static site generator",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git@github.com/mspg/core"
},
"bin": {
"mspg": "./bin.js"
},
"author": "Wizards & Witches",
"license": "AGPL-3.0",
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
}
],
"dependencies": {
"@magic/deep": "0.1.0",
"@magic/log": "0.1.0-cjs",
"@magic/types": "0.0.5",
"imagemin": "6.1.0",
"imagemin-gifsicle": "6.0.1",
"imagemin-jimp": "github:jaeh/imagemin-jimp",
"imagemin-mozjpeg": "8.0.0",
"imagemin-pngquant": "7.0.0",
"imagemin-svgo": "7.0.0",
"jimp": "0.6.4",
"node-zopfli-es": "1.0.3",
"purify-css": "1.2.5"
},
"devDependencies": {
"@magic/test": "0.0.12"
},
"files": [
"src",
"bin.js"
],
"scripts": {
"start": "t -p",
"test": "t",
"build": "NODE_ENV=production ./bin.js build zip",
"prod": "NODE_ENV=production ./bin.js build serve watch",
"dev": "./bin.js build serve watch",
"format": "f -w",
"format:check": "f",
"resizeImages": "./bin.js resize-images",
"calls": "calls",
"connect": "NODE_ENV=production ./bin.js connect",
"publish": "NODE_ENV=production ./bin.js build zip publish",
"serve": "NODE_ENV=production ./bin.js serve"
}
}