-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.54 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "web-ignition",
"description": "Start a fire",
"version": "2.3.0",
"license": "MIT",
"type": "module",
"module": "dist/lib-x.js",
"browser": "dist/lib-x.min.js",
"style": "dist/reset.min.css",
"types": "dist/lib-x.d.ts",
"exports": {
".": "./dist/lib-x.js",
"./": "./dist/"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/center-key/web-ignition.git"
},
"homepage": "https://github.com/center-key/web-ignition",
"bugs": "https://github.com/center-key/web-ignition/issues",
"docs": "https://github.com/center-key/web-ignition#readme",
"keywords": [
"css",
"css-reset",
"html",
"javascript",
"layouts",
"web"
],
"jshintConfig": {
"esversion": 11,
"strict": "implied",
"eqeqeq": true,
"undef": true,
"unused": true,
"browser": true,
"mocha": true,
"node": true,
"globals": {
"dna": false
}
},
"runScriptsConfig": {
"clean": [
"rimraf build dist"
],
"lint": [
"jshint . --exclude-path .gitignore",
"eslint --max-warnings 0"
],
"blogger": [
"lessc src/css/blogger-tweaks/style.less build/step3/blogger-tweaks.css",
"replacer src/css/blogger-tweaks/instructions.css build/step4 --regex=/{{apos}}{{gt}}$/gm --replacement={{apos}}/{{gt}}",
"csso build/step3/blogger-tweaks.css --output build/step4/blogger-tweaks.min.css",
"replacer build/step4 --ext=.css build/step5 --concat=blogger-tweaks.min.css"
],
"build": [
"tsc",
"lessc src/css/reset.less build/step1/reset.css",
"copy-file src/css/reset-color-overrides.css --folder build/step2",
"csso build/step1/reset.css --output build/step2/core-reset.min.css",
"replacer build/step2 --ext=.css build/step5 --concat=reset.min.css",
"replacer src/css/layouts --ext=.css build/step5/layouts",
"copy-folder build/step0 build/step5",
"esm-to-plain-js build/step0/lib-x.js build/step5/lib-x.dev.js",
"uglifyjs build/step5/lib-x.dev.js --output build/step5/lib-x.min.js",
"uglifyjs src/css/layouts/neon.js --output build/step5/layouts/neon.min.js"
],
"publish": [
"add-dist-header build/step5 --recursive dist",
"copy-folder src/css/layouts/neon --ext=.jpg dist/layouts/neon"
]
},
"scripts": {
"pretest": "run-scripts clean lint blogger build publish",
"test": "html-validator src && mocha spec/*.spec.js"
},
"dependencies": {
"dna-engine": "~3.2",
"fetch-json": "~3.3",
"highlight.js": "~11.11",
"hljs-enhance": "~2.0"
},
"devDependencies": {
"@eslint/js": "~9.18",
"@fortawesome/fontawesome-free": "~6.7",
"@types/node": "~22.10",
"add-dist-header": "~1.4",
"assert-deep-strict-equal": "~1.2",
"copy-file-util": "~1.2",
"copy-folder-util": "~1.1",
"csso-cli": "~4.0",
"eslint": "~9.18",
"esm-to-plain-js": "~1.1",
"jshint": "~2.13",
"less": "~4.2",
"mocha": "~11.0",
"replacer-util": "~1.3",
"rimraf": "~6.0",
"run-scripts-util": "~1.3",
"typescript": "~5.7",
"typescript-eslint": "~8.20",
"uglify-js": "~3.19",
"w3c-html-validator": "~1.8"
}
}