forked from beefchimi/threads
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1000 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1000 Bytes
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
{
"name": "threads",
"version": "1.0.0-beta8",
"description": "SCSS property manager – organize with style",
"author": "Curtis Dulmage",
"homepage": "https://github.com/beefchimi/threads",
"license": "MIT",
"main": "tools/index.js",
"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.0",
"prettier": "^1.8.2",
"prettier-stylelint": "^0.4.2",
"sassdoc": "^2.4.0",
"sassdoc-theme-flippant": "^0.1.0",
"stylelint": "^8.2.0",
"stylelint-config-shopify": "^4.0.0"
}
}