forked from jloh/bulma-prefers-dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.21 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
75
76
77
78
79
80
81
82
{
"name": "@craftions/bulma-dark",
"version": "0.1.0-beta.1",
"description": "Bulma extension to add prefers-color-scheme dark support",
"main": "bulma-prefers-dark.sass",
"unpkg": "css/bulma-prefers-dark.css",
"style": "bulma-prefers-dark/css/bulma-prefers-dark.min.css",
"repository": {
"type": "git",
"url": "git+https://github.com/CraftionsMC/bulma-dark"
},
"keywords": [
"css",
"sass",
"flexbox",
"responsive",
"bulma",
"extensions",
"bulma.io"
],
"author": {
"name": "James Loh",
"url": "https://jloh.co"
},
"contributes": [
{
"name": "Ben Siebert",
"url": "https://mctzock.de",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jloh/bulma-prefers-dark/issues"
},
"homepage": "https://github.com/jloh/bulma-prefers-dark#readme",
"devDependencies": {
"autoprefixer": "10.3.7",
"bulma": "0.7.4",
"clean-css-cli": "5.4.1",
"node-sass": "6.0.1",
"postcss-cli": "9.0.1",
"release-it": "14.11.6",
"rimraf": "3.0.2"
},
"scripts": {
"build": "npm run build-clean && npm run build-sass && npm run build-autoprefix && npm run build-cleancss",
"build-autoprefix": "postcss --use autoprefixer --map false --output css/bulma-prefers-dark.css css/bulma-prefers-dark.css",
"build-cleancss": "cleancss -o css/bulma-prefers-dark.min.css css/bulma-prefers-dark.css",
"build-clean": "rimraf css",
"build-sass": "node-sass --output-style expanded --source-map true build/bulma-prefers-dark.sass css/bulma-prefers-dark.css",
"deploy": "npm run build",
"start": "npm run build-sass -- --watch"
},
"release-it": {
"pkgFiles": [
"package.json",
"package-lock.json"
],
"git": {
"commitMessage": "Release v${version}",
"tagAnnotation": "Release v${version}",
"tagName": "v${version}",
"commitArgs": "-S",
"tagArgs": "-s"
},
"github": {
"release": true,
"releaseName": "Release v${version}"
},
"scripts": {
"beforeStart": "npm run build"
},
"hooks": {
"after:bump": "npm run build"
}
},
"publishConfig": {
"access": "public"
},
"private": false
}