-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.83 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
83
84
{
"name": "@hydrogen-css/hydrogen",
"version": "2.1.0",
"description": "An open-source, inline CSS framework powered by data-attributes. GPL-3.0 Licensed.",
"keywords": [
"Hydrogen",
"css",
"inline",
"utility",
"framework"
],
"homepage": "https://hydrogen.design",
"bugs": {
"url": "https://github.com/hydrogen-css/hydrogen/issues/new"
},
"license": "GPL-3.0",
"author": {
"name": "Josh Beveridge",
"url": "https://joshbeveridge.ca"
},
"main": "./index.js",
"bin": {
"hydrogen-init": "./bin/init.js",
"hydrogen-watch": "./bin/watch.js",
"hydrogen-build": "./bin/build.js",
"h2-init": "./bin/init.js",
"h2-watch": "./bin/watch.js",
"h2-build": "./bin/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hydrogen-css/hydrogen"
},
"scripts": {
"setup": "./setup.sh",
"deploy": "./deploy.sh",
"docs": "npm link --no-fund --no-audit && cd docs && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true npm start",
"docs:build": "npm link --no-fund --no-audit && cd docs && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true npm run build",
"docs:build:logs": "npm link --no-fund --no-audit && cd docs && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true HYDROGEN_LOGS=true npm run build",
"test": "npm link --no-fund --no-audit && cd test && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true npm start",
"test:build": "npm link --no-fund --no-audit && cd test && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true npm run build",
"test:build:logs": "npm link --no-fund --no-audit && cd test && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true HYDROGEN_LOGS=true npm run build",
"test:watch": "npm link --no-fund --no-audit && cd test && npm link @hydrogen-css/hydrogen --no-fund --no-audit && H2DEBUG=true npm run watch",
"jest": "jest"
},
"dependencies": {
"@webref/css": "^6.12.12",
"autoprefixer": "^10.4.19",
"browserslist": "^4.23.0",
"chokidar": "^3.6.0",
"color": "^4.2.3",
"colors": "^1.4.0",
"css-tree": "^2.3.1",
"cssnano": "^7.0.1",
"cssnano-preset-default": "^7.0.1",
"glob": "^10.3.10",
"lightningcss": "^1.24.0",
"lodash.clonedeep": "^4.5.0",
"postcss": "^8.4.38",
"prompt": "^1.3.0",
"stylelint": "^16.6.0",
"stylelint-config-standard": "^36.0.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=14.18.1",
"npm": ">=8.11.0"
},
"browserslist": [
"last 1 version and not dead"
],
"prettier": {
"singleQuote": true,
"proseWrap": "preserve",
"bracketSpacing": true,
"tabWidth": 2,
"useTabs": false,
"singleAttributePerLine": true,
"printWidth": 100
},
"devDependencies": {
"jest": "^29.7.0"
}
}