-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "layout",
"version": "0.1.0",
"private": true,
"description": "POC Flexbox GridCSS",
"keywords": [
"Flexbox",
"GridCSS"
],
"homepage": "https://github.com/krbaio3/lemoncode",
"bugs": {
"url": "https://github.com/krbaio3/lemoncode/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/krbaio3/lemoncode.git"
},
"license": "MIT",
"author": {
"name": "J. KrBaIO3",
"email": "krbaio3@gmail.com"
},
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "parcel build index.html",
"dev": "parcel index.html",
"preprod": "npm run build",
"prod": "npm run serve",
"serve": "http-server dist",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build -- --public-url /lemoncode/",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"http-server": "0.12.3"
},
"devDependencies": {
"parcel-bundler": "1.12.4",
"sass": "1.26.5",
"gh-pages": "2.2.0",
"rimraf": "3.0.2"
}
}