generated from schalkneethling/qilin-open-source-project-starter-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1023 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": "minimalist",
"version": "0.0.1",
"description": "A minimal pure CSS starter framework for most web projects.",
"scripts": {
"lint": "stylelint sass/**/*.scss",
"prettier:check": "prettier --check **/*.scss",
"prettier:format": "prettier --write **/*.scss",
"prettier:staged": "pretty-quick --staged --pattern \"**/*.scss\"",
"server": "http-server -p 8090",
"test": "npm run test:bundlesize && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schalkneethling/minimalist.git"
},
"keywords": [
"framework",
"css"
],
"author": "Schalk Neethling",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/schalkneethling/minimalist/issues"
},
"homepage": "https://github.com/schalkneethling/minimalist#readme",
"devDependencies": {
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^14.0.1",
"stylelint-prettier": "^5.0.2"
}
}