wishthis/node_modules/postcss-value-parser/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2022-01-21 08:28:41 +00:00
{
2022-04-08 10:55:35 +00:00
"name": "postcss-value-parser",
"version": "4.2.0",
2022-02-23 16:41:13 +00:00
"description": "Transforms css values and at-rule params into the tree",
2022-04-08 10:55:35 +00:00
"main": "lib/index.js",
"files": [
"lib"
],
2022-01-21 08:28:41 +00:00
"devDependencies": {
"eslint": "^5.16.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"tap-spec": "^5.0.0",
"tape": "^4.10.2"
},
2022-04-08 10:55:35 +00:00
"scripts": {
"lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --list-different",
"lint:js": "eslint . --cache",
"lint": "yarn lint:js && yarn lint:prettier",
"pretest": "yarn lint",
"test": "tape test/*.js | tap-spec"
},
2022-01-21 08:28:41 +00:00
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended"
},
2022-02-23 16:41:13 +00:00
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
2022-04-08 10:55:35 +00:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"author": "Bogdan Chadkin <trysound@yandex.ru>",
"license": "MIT",
"homepage": "https://github.com/TrySound/postcss-value-parser",
2022-02-23 16:41:13 +00:00
"repository": {
"type": "git",
2022-04-08 10:55:35 +00:00
"url": "https://github.com/TrySound/postcss-value-parser.git"
2022-02-23 16:41:13 +00:00
},
2022-04-08 10:55:35 +00:00
"keywords": [
"postcss",
"value",
"parser"
],
"bugs": {
"url": "https://github.com/TrySound/postcss-value-parser/issues"
}
2022-01-21 08:28:41 +00:00
}