-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.48 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.48 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
{
"name": "@tangoman75/pivot",
"version": "0.1.0",
"description": "Pico Framework extension",
"author": "Matthias Morin",
"main": "css/pivot.min.css",
"homepage": "https://tangoman.io",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TangoMan75/pivot.git"
},
"keywords": [
"css",
"css-framework",
"dark-mode",
"dark-theme",
"lightweight",
"minimal",
"minimalist",
"minimalistic",
"native-html",
"scss-framework",
"semantic"
],
"bugs": {
"url": "https://github.com/TangoMan75/pivot/issues"
},
"scripts": {
"build": "npm run lint:js && npm run lint:css && npm run build:js && npm run build:css",
"watch": "nodemon -q --watch ./src/ --ext js,scss --exec 'npm run build'",
"watch:js": "nodemon -q --watch ./src/js/ --ext js --exec 'npm run build:js'",
"watch:css": "nodemon -q --watch ./src/scss/ --ext scss --exec 'npm run lint:css && npm run build:css'",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint ./src/js/ --ext .js --cache",
"lint:css": "npm run lint:css:prettier && npm run lint:css:sort-scss",
"lint:css:prettier": "prettier --write --log-level silent './src/scss/**/*.scss'",
"lint:css:sort-scss": "postcss ./src/scss/**/*.scss --replace",
"build:js": "npx webpack",
"build:css": "npm run build:css:sass && npm run build:css:autoprefix && npm run build:css:minify",
"build:css:sass": "sass --no-source-map --style expanded --no-error-css ./src/scss/:./dist/css/",
"build:css:autoprefix": "postcss --config css --replace ./dist/css/pivot.css",
"build:css:minify": "cleancss -O1 --with-rebase --batch --batch-suffix .min ./dist/css/pivot.css",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"autoprefixer": "^10.5.0",
"babel-jest": "^30.3.0",
"caniuse-lite": "^1.0.30001788",
"clean-css-cli": "^5.6.3",
"css-declaration-sorter": "^7.4.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"nodemon": "^3.1.14",
"postcss": "^8.5.10",
"postcss-cli": "^11.0.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.3",
"sass": "^1.99.0",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
},
"browserslist": [
"defaults"
],
"dependencies": {
"core-js": "^3.49.0"
},
"resolutions": {
"glob": "^9.0.0"
}
}