Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.6 KiB
66 lines
1.6 KiB
1 year ago
|
{
|
||
|
"name": "postcss-modules",
|
||
|
"version": "3.2.2",
|
||
|
"description": "PostCSS plugin to use CSS Modules everywhere",
|
||
|
"main": "build/index.js",
|
||
|
"keywords": [
|
||
|
"postcss",
|
||
|
"css",
|
||
|
"postcss-plugin",
|
||
|
"modules",
|
||
|
"css modules",
|
||
|
"components"
|
||
|
],
|
||
|
"author": "Alexander Madyankin <alexander@madyankin.name>",
|
||
|
"license": "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/css-modules/postcss-modules.git"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"generic-names": "^2.0.1",
|
||
|
"icss-replace-symbols": "^1.1.0",
|
||
|
"lodash.camelcase": "^4.3.0",
|
||
|
"postcss": "^7.0.32",
|
||
|
"postcss-modules-extract-imports": "^2.0.0",
|
||
|
"postcss-modules-local-by-default": "^3.0.2",
|
||
|
"postcss-modules-scope": "^2.2.0",
|
||
|
"postcss-modules-values": "^3.0.0",
|
||
|
"string-hash": "^1.1.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"autoprefixer": "^9.6.1",
|
||
|
"babel-cli": "^6.26.0",
|
||
|
"babel-core": "^6.26.3",
|
||
|
"babel-eslint": "^10.1.0",
|
||
|
"babel-preset-env": "^1.7.0",
|
||
|
"eslint": "^7.3.1",
|
||
|
"eslint-plugin-import": "^2.21.2",
|
||
|
"eslint-plugin-jest": "^23.17.0",
|
||
|
"husky": "^4.2.5",
|
||
|
"jest": "^26.0.1",
|
||
|
"lint-staged": "^10.2.11",
|
||
|
"prettier": "^2.0.5"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"pretest": "$(npm bin)/eslint src test",
|
||
|
"test": "$(npm bin)/jest",
|
||
|
"transpile": "$(npm bin)/babel src -d build",
|
||
|
"prepublish": "npm run transpile",
|
||
|
"postpublish": "rm -rf build && git push --follow-tags",
|
||
|
"precommit": "lint-staged"
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.{json,md}": [
|
||
|
"prettier --write",
|
||
|
"git add"
|
||
|
],
|
||
|
"*.js": [
|
||
|
"prettier --write",
|
||
|
"eslint --fix",
|
||
|
"git add"
|
||
|
]
|
||
|
},
|
||
|
"require": "babel-core/register"
|
||
|
}
|