Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Incognito-old
Path: blob/main/static/src/gs/public/gopher-kart/css/milligram/package.json
1333 views
1
{
2
"name": "milligram",
3
"version": "1.3.0",
4
"description": "A minimalist CSS framework.",
5
"homepage": "https://milligram.github.io",
6
"repository": "milligram/milligram",
7
"license": "MIT",
8
"author": "CJ Patoilo <[email protected]>",
9
"main": "dist/milligram.css",
10
"keywords": [
11
"bootstrap",
12
"css",
13
"css3",
14
"flexbox",
15
"front-end",
16
"framework",
17
"html",
18
"html5",
19
"kickstarter",
20
"less",
21
"responsive",
22
"mobile",
23
"mobile-first",
24
"postcss",
25
"responsive",
26
"sass",
27
"scss",
28
"stylus"
29
],
30
"ignore": [
31
".appveyor.yml",
32
".editorconfig",
33
".eslintrc",
34
".github",
35
".gitignore",
36
".npmignore",
37
".sasslintrc",
38
".travis.yml",
39
"backstop.conf.js",
40
"bower.json",
41
"changelog.md",
42
"composer.json",
43
"package.js",
44
"package.json",
45
"src",
46
"test"
47
],
48
"dependencies": {
49
"normalize.css": "~5.0.0"
50
},
51
"devDependencies": {
52
"autoprefixer": "^6.5.4",
53
"ava": "^0.17.0",
54
"backstopjs": "^2.3.5",
55
"banner-cli": "^0.9.2",
56
"browser-sync": "^2.18.5",
57
"editorconfig-tools": "^0.1.1",
58
"eslint": "^3.14.0",
59
"eslint-config-styled": "^0.0.0",
60
"husky": "^0.11.9",
61
"node-sass": "^3.13.1",
62
"npm-run-all": "^2.3.0",
63
"nyc": "^10.0.0",
64
"onchange": "^2.5.0",
65
"postcss-cli": "^2.6.0",
66
"rimraf": "^2.5.4",
67
"sass-lint": "^1.10.2"
68
},
69
"engines": {
70
"node": ">=4"
71
},
72
"scripts": {
73
"start": "run-p build watch serve",
74
"build": "run-s clean sass autoprefixer banner",
75
"clean": "rimraf dist",
76
"sass": "node-sass --output-style expanded src/milligram.sass dist/milligram.css && node-sass --output-style compressed src/milligram.sass dist/milligram.min.css",
77
"autoprefixer": "postcss -u autoprefixer --no-map.inline --autoprefixer.browsers \"last 1 versions\" -r dist/*.css",
78
"banner": "banner-cli dist/*.css",
79
"watch": "onchange src -- run-p build",
80
"serve": "browser-sync start --no-notify -s test --ss dist -f dist",
81
"backstop": "run-s build && run-p serve compare",
82
"reference": "backstop reference --configPath=backstop.conf.js",
83
"compare": "backstop test --configPath=backstop.conf.js",
84
"lint": "sass-lint -c .sasslintrc src --verbose --no-exit && eslint test -c styled && editorconfig-tools check .",
85
"ava": "nyc ava",
86
"test": "run-s build lint ava",
87
"precommit": "run-p test"
88
}
89
}
90
91