-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 933 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 933 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
{
"name": "@realgeeks/sass-flatten",
"version": "0.2.9",
"description": "Reduce a Sass (scss) file structure to a single file by inlining partial imports.",
"files": [
"index.js",
"bin/sass-flatten"
],
"bin": {
"sass-flatten": "bin/sass-flatten"
},
"scripts": {
"test": "node tests.js",
"release:base": "npx np --no-yarn",
"release:dev": "npm run release:base -- --tag=dev --any-branch patch",
"release:patch": "npm run release:base -- patch"
},
"repository": {
"type": "git",
"url": "https://github.com/RealGeeks/sass-flatten.git"
},
"author": "Jorge Valdez <jorge@realgeeks.com>",
"bugs": {
"url": "https://github.com/RealGeeks/sass-flatten/issues"
},
"homepage": "https://github.com/RealGeeks/sass-flatten",
"devDependencies": {
"tape": "^4.9.1"
},
"dependencies": {
"get-stdin": "^6.0.0",
"gonzales-pe": "^4.2.3",
"meow": "^5.0.0"
}
}