54 lines
1.4 KiB
JSON
54 lines
1.4 KiB
JSON
|
{
|
||
|
"name": "inline-style-parser",
|
||
|
"version": "0.2.2",
|
||
|
"description": "An inline style parser.",
|
||
|
"main": "index.js",
|
||
|
"scripts": {
|
||
|
"build": "rollup --config --failAfterWarnings",
|
||
|
"clean": "rm -rf dist",
|
||
|
"lint": "eslint --ignore-path .gitignore .",
|
||
|
"lint:fix": "npm run lint -- --fix",
|
||
|
"prepublishOnly": "pinst --disable && npm run lint && npm test && npm run build",
|
||
|
"test": "jest",
|
||
|
"test:ci": "CI=true jest --ci --colors --coverage --collectCoverageFrom=index.js",
|
||
|
"test:esm": "node --test test/index.test.mjs",
|
||
|
"test:watch": "jest --watch",
|
||
|
"_postinstall": "husky install",
|
||
|
"postpublish": "pinst --enable"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/remarkablemark/inline-style-parser"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/remarkablemark/inline-style-parser/issues"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"inline-style-parser",
|
||
|
"inline-style",
|
||
|
"style",
|
||
|
"parser",
|
||
|
"css"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"@commitlint/cli": "17.8.0",
|
||
|
"@commitlint/config-conventional": "17.8.0",
|
||
|
"@rollup/plugin-commonjs": "25.0.5",
|
||
|
"@rollup/plugin-terser": "0.4.4",
|
||
|
"css": "3.0.0",
|
||
|
"eslint": "8.51.0",
|
||
|
"eslint-plugin-prettier": "5.0.1",
|
||
|
"husky": "8.0.3",
|
||
|
"jest": "29.7.0",
|
||
|
"lint-staged": "14.0.0",
|
||
|
"pinst": "3.0.0",
|
||
|
"prettier": "3.0.3",
|
||
|
"rollup": "4.1.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"/dist",
|
||
|
"/index.d.ts"
|
||
|
],
|
||
|
"license": "MIT"
|
||
|
}
|