-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "frontsize",
"version": "4.0.4",
"description": "A fully customizable CSS generator to ease your life.",
"authors": [
{
"name": "Alessandro Minoccheri",
"email": "alessandro.minoccheri@gmail.com"
},
{
"name": "Carla Soloperto",
"email": "cs@ideato.it"
},
{
"name": "Moreno Giorgini",
"email": "mg@ideato.it"
},
{
"name": "Vittorio Vittori",
"email": "me@vittoriovittori.com"
}
],
"license": "MIT",
"homepage": "http://frontsize.com",
"keywords": [
"sass",
"css",
"framework"
],
"repository": {
"type": "git",
"url": "https://github.com/ideatosrl/frontsize.git"
},
"main": "compile.scss",
"dependencies": {
"include-media": "^1.4.8",
"normalize-scss": "^6.0.0",
"sass-resolution": "^1.0.0",
"spinners": "^1.2.2",
"unitconversion": "^2.1.13"
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"clean-css-cli": "^4.1.11",
"colors": "^1.2.4",
"node-diff": "^0.2.0",
"node-sass": "^3.10.1",
"postcss-cli": "^5.0.0",
"standard": "^10.0.1"
},
"standard": {
"globals": []
},
"engines": {
"node": ">=3.3.12"
},
"bugs": {
"url": "https://github.com/ideatosrl/frontsize/issues"
},
"scripts": {
"build": "./node_modules/node-sass/bin/node-sass ./core/test.scss test/css/frontsize.css && postcss --use autoprefixer --autoprefixer.browsers '> 5%' -o test/css/frontsize.css test/css/frontsize.css && cleancss -o test/css/frontsize.css test/css/frontsize.css",
"deploy": "cd documentation && npm run build && cd .. && git subtree push --prefix documentation/dist origin gh-pages",
"test": "node test/test.js"
}
}