-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 931 Bytes
/
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
{
"name": "@nichoth/resume",
"private": true,
"description": "The resume",
"version": "0.0.0",
"main": "./build.js",
"scripts": {
"build-css": "postcss src/style.css --use cssnano postcss-nesting",
"build": "mkdir -p ./public && rm -rf ./public/* && npm run --silent build-css | node build.js > ./public/index.html",
"lint": "stylelint src/*.css"
},
"dependencies": {
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1"
},
"devDependencies": {
"cssnano": "^7.0.6",
"hyperstream": "^1.2.2",
"marked": "^14.1.2",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-nesting": "^13.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/resume.git"
},
"author": "nichoth",
"license": "ISC",
"bugs": {
"url": "https://github.com/nichoth/resume/issues"
},
"homepage": "https://github.com/nichoth/resume"
}