-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "threads-scss",
"version": "1.0.0",
"description": "SCSS property manager – organize with style",
"author": "Curtis Dulmage",
"homepage": "https://github.com/beefchimi/threads",
"license": "MIT",
"main": "threads.scss",
"repository": {
"type": "git",
"url": "https://github.com/beefchimi/threads.git"
},
"keywords": [
"threads",
"scss"
],
"bugs": {
"url": "https://github.com/beefchimi/threads/issues"
},
"scripts": {
"docs": "sassdoc './**/*.scss' --theme flippant --dest './docs'",
"lint": "stylelint './**/*.scss'",
"prettier": "prettier-stylelint './**/*.scss' --write -q",
"watch": "chokidar './**/*.scss'",
"start": "yarn run watch -c 'yarn run docs'"
},
"devDependencies": {
"chokidar-cli": "^1.2.2",
"node-sass": "4.11.0",
"prettier": "^1.17.0",
"prettier-stylelint": "^0.4.2",
"sassdoc": "^2.6.0",
"sassdoc-theme-flippant": "^0.1.0",
"stylelint": "^10.0.1",
"stylelint-config-shopify": "^7.2.1"
}
}