-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "oo-loop",
"version": "1.1.0",
"description": "Loop CSS framework, flexible and expressive CSS",
"keywords": [
"scss",
"sass",
"css",
"loop",
"flexible",
"expressive",
"front-end",
"framework"
],
"homepage": "https://oo-loop.github.io/",
"bugs": {
"url": "https://github.com/oo-loop/loop/issues"
},
"license": "MIT",
"author": {
"name": "micantoine"
},
"files": [
"dist/",
"scss/",
"loop.scss"
],
"style": "scss/_loop.scss",
"sass": "scss/_loop.scss",
"main": "scss/_loop.scss",
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "https://github.com/oo-loop/loop.git"
},
"scripts": {
"dev": "sass --watch --style=expanded --no-source-map src/index.scss:dist/loop.css scss",
"build": "sass --style=compressed --no-source-map src/index.scss dist/loop.css",
"example": "sass --watch --style=expanded --no-source-map example/src:example/build"
},
"devDependencies": {
"sass": "^1.79.3"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}