-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.97 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
{
"name": "postcss-flexup",
"version": "1.0.12",
"description": "PostCSS plugin to make flex cooler",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"jsdelivr": "dist/index.mjs",
"unpkg": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "rollup --bundleConfigAsCjs -c rollup.config.js",
"test": "npm run test:eslint && npm run test:jest",
"test:eslint": "eslint src/**/*.js",
"test:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"fix": "eslint --fix src/**/*.js"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"flex",
"flexbox",
"node modules"
],
"author": "Dimitris Chatzis",
"license": "MIT",
"homepage": "https://github.com/DimChtz/postcss-flexup",
"repository": {
"type": "git",
"url": "git+https://github.com/DimChtz/postcss-flexup.git"
},
"bugs": "https://github.com/DimChtz/postcss-flexup/issues",
"files": [
"dist"
],
"peerDependencies": {
"postcss": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.24.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"postcss": "^8.4.35",
"rollup": "^4.13.0",
"semantic-release": "^23.0.2"
}
}