1 | {
|
2 | "name": "inline-style-parser",
|
3 | "version": "0.2.4",
|
4 | "description": "An inline style parser.",
|
5 | "main": "index.js",
|
6 | "scripts": {
|
7 | "build": "rollup --config --failAfterWarnings",
|
8 | "clean": "rm -rf dist",
|
9 | "lint": "eslint .",
|
10 | "lint:fix": "npm run lint -- --fix",
|
11 | "prepare": "husky",
|
12 | "prepublishOnly": "npm run lint && npm test && npm run build",
|
13 | "test": "jest",
|
14 | "test:ci": "CI=true jest --ci --colors --coverage --collectCoverageFrom=index.js",
|
15 | "test:esm": "node --test test/index.test.mjs",
|
16 | "test:watch": "jest --watch"
|
17 | },
|
18 | "repository": {
|
19 | "type": "git",
|
20 | "url": "https://github.com/remarkablemark/inline-style-parser"
|
21 | },
|
22 | "bugs": {
|
23 | "url": "https://github.com/remarkablemark/inline-style-parser/issues"
|
24 | },
|
25 | "keywords": [
|
26 | "inline-style-parser",
|
27 | "inline-style",
|
28 | "style",
|
29 | "parser",
|
30 | "css"
|
31 | ],
|
32 | "devDependencies": {
|
33 | "@commitlint/cli": "19.4.1",
|
34 | "@commitlint/config-conventional": "19.4.1",
|
35 | "@eslint/compat": "1.1.1",
|
36 | "@eslint/eslintrc": "3.1.0",
|
37 | "@eslint/js": "9.9.1",
|
38 | "@rollup/plugin-commonjs": "26.0.1",
|
39 | "@rollup/plugin-terser": "0.4.4",
|
40 | "css": "3.0.0",
|
41 | "eslint": "9.9.1",
|
42 | "eslint-plugin-prettier": "5.2.1",
|
43 | "eslint-plugin-simple-import-sort": "12.1.1",
|
44 | "globals": "15.9.0",
|
45 | "husky": "9.1.5",
|
46 | "jest": "29.7.0",
|
47 | "lint-staged": "15.2.9",
|
48 | "prettier": "3.3.3",
|
49 | "rollup": "4.21.1"
|
50 | },
|
51 | "files": [
|
52 | "/dist",
|
53 | "/index.d.ts"
|
54 | ],
|
55 | "license": "MIT"
|
56 | }
|