-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·74 lines (74 loc) · 2.22 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
66
67
68
69
70
71
72
73
74
{
"name": "tachyons-sass-haru",
"description": "Transpiled Sass partials for Tachyons",
"author": "Benjamin Rush (bnjmnrsh)",
"version": "0.1.1",
"style": "css/tachyons.min.css",
"main": "tachyons.scss",
"files": [
"css",
"scss",
"tachyons.scss"
],
"scripts": {
"migrate": "sass-migrator --migrate-deps module --forward=all tachyons.scss",
"build": "run-s build:css build:minify prettier:css",
"build:css": "sass tachyons.scss ./css/tachyons.css",
"build:minify": "sass --style=compressed tachyons.scss css/tachyons.min.css --style=compressed",
"build:watch": "sass --watch tachyons.scss css/tachyons.css",
"prettier:css": "prettier --write css/tachyons.css",
"lint:js": "standard --fix",
"lint:css": "stylelint \"**/*.scss\"",
"lint:css-fix": "stylelint \"**/*.scss\" --fix",
"mutations": "immutable-css css/tachyons.css --strict",
"start": "npm run build:watch",
"test": "ava",
"wallace": "cat css/tachyons.css | wallace --verbose"
},
"repository": "tachyons-haru/tachyons-sass-haru",
"keywords": [
"css",
"oocss",
"postcss",
"functional css",
"design",
"responsive",
"performance",
"tachyons",
"tachyons-css",
"tachyons-sass-haru",
"haru-css",
"sass",
"scss"
],
"license": "MIT",
"devDependencies": {
"ava": "^6.1.3",
"cat": "^0.2.0",
"immutable-css-cli": "^1.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"sass": "^1.77.4",
"standard": "^17.1.0",
"stylelint": "^16.6.1",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"wallace-cli": "^3.0.0"
},
"contributors": [
{
"name": "adam morse",
"email": "hi@mrmrs.cc"
},
{
"name": "john otander",
"url": "http://johnotander.com"
},
{
"name": "bnjmnrsh",
"email": "bnjmnrsh@gmail.com"
}
]
}