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
|
{
"name": "mokha-scss",
"version": "1.0.0",
"description": "",
"main": "index.scss",
"style": "mokha-scss/css/mokha.css",
"scripts": {
"build": "yarn build:clean && yarn build:scss",
"build:clean": "rm -fr css",
"build:scss": "node-sass --include-path node_modules --output-style expanded --source-map true index.scss css/mokha.css",
"build:watch": "yarn build:scss --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mokhan/mokha-scss.git"
},
"author": "mokha",
"license": "MIT",
"bugs": {
"url": "https://github.com/mokhan/mokha-scss/issues"
},
"homepage": "https://github.com/mokhan/mokha-scss#readme",
"devDependencies": {
"node-sass": "^4.11.0"
},
"dependencies": {
"bourbon-neat": "^3.0.0",
"minireset.css": "^0.0.3"
}
}
|