-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "0xfolio",
"version": "1.0.0",
"description": "A free HTML portfolio template for developers.",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "live-server",
"compile:scss": "node-sass --source-map true scss/main.scss css/main.comp.css",
"prefix:css": "postcss --use autoprefixer -b \"last 10 versions\" css/main.comp.css -o css/main.prefix.css",
"compress:css": "node-sass css/main.prefix.css css/main.css --output-style compressed",
"build": "npm-run-all compile:scss prefix:css compress:css"
},
"repository": {
"type": "git",
"url": "https://github.com/0xAliRaza/0xFolio.git"
},
"keywords": [
"html",
"css",
"portfolio-template",
"free-to-use"
],
"author": {
"name": "Ali Raza",
"url": "https://0xali.com",
"github": "https://github.com/0xAliRaza",
"twitter": "https://twitter.com/0xAliRaza"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^10.0.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.1.1",
"postcss-cli": "^8.1.0"
}
}