-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.94 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.94 KB
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": "@resultify/initial.css",
"version": "0.0.5",
"description": "Browser default initial CSS styles with integrated custom properties.",
"keywords": [
"css",
"metodology",
"utility",
"user-agent",
"initial",
"inherit",
"reset",
"normalize"
],
"bugs": "https://github.com/Resultify/initial.css/issues",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Resultify/initial.css"
},
"main": "dist/initial.css",
"style": "dist/initial.css",
"files": [
"dist/",
"src/"
],
"scripts": {
"prepare": "husky install",
"lint-css": "stylelint 'src/**/*.css'",
"standardJs": "standard -v 'build/**/*.js'",
"checkJs": "tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"test": "npm run lint-css && npm run standardJs && npm run checkJs",
"build": "node ./build/build.exec.js",
"docs": "node ./build/docs.exec.js",
"watch": "node ./build/watch.exec.js",
"start": "npm run watch & http-server -p 8083 docs/"
},
"devDependencies": {
"@types/node": "~20.2.5",
"@types/postcss-import": "~14.0.0",
"@types/semver": "~7.5.0",
"chalk": "~5.2.0",
"chokidar": "~3.5.3",
"cssnano": "~6.0.1",
"del": "~7.0.0",
"globby": "~13.1.4",
"http-server": "~14.1.1",
"husky": "~8.0.1",
"postcss-import": "~15.1.0",
"semver": "~7.5.0",
"standard": "~17.1.0",
"stylelint": "~15.7.0",
"stylelint-config-recommended": "~12.0.0",
"stylelint-no-unsupported-browser-features": "~6.1.0",
"typescript": "~5.1.3"
},
"engines": {
"node": ">=16.14",
"npm": ">=8.19"
},
"publishConfig": {
"access": "public"
},
"standard": {
"ignore": [
"dist/"
]
},
"stylelint": {
"extends": [
"stylelint-config-recommended"
],
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {},
"ignoreFiles": [
"dist/"
]
}
}