-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 KB
/
package.json
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
{
"name": "FlaCSS",
"version": "0.1.0",
"description": "Flags from all around the world, just with CSS.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"css": "node-sass --output-style expanded scss/index.scss build/flags.css",
"css:watch": "node-sass --output-style expanded scss/index.scss build/flags.css -w",
"css:min": "node-sass --output-style compressed scss/index.scss build/flags.min.css",
"build": "npm run css:min && npm run css",
"clean": "rm -r build/*"
},
"repository": {
"type": "git",
"url": "https://github.com/MustHash/FlaCSS.git"
},
"keywords": [
"css",
"scss",
"sass",
"flag",
"flags"
],
"author": "Gonçalo Morais",
"license": "MIT",
"bugs": {
"url": "https://github.com/MustHash/FlaCSS/issues"
},
"homepage": "https://github.com/MustHash/FlaCSS",
"devDependencies": {
"async-foreach": "^0.1.3",
"chalk": "^1.1.0",
"gaze": "^0.5.1",
"glob": "^5.0.14",
"meow": "^3.3.0",
"mkdirp": "^0.5.1",
"node-sass": "^3.2.0",
"sass-graph": "^2.0.0"
}
}