[d565449] | 1 | {
|
---|
| 2 | "name": "hyphenate-style-name",
|
---|
| 3 | "version": "1.1.0",
|
---|
| 4 | "description": "Hyphenates a camelcased CSS property name",
|
---|
| 5 | "main": "index.cjs.js",
|
---|
| 6 | "module": "index.js",
|
---|
| 7 | "types": "index.d.ts",
|
---|
| 8 | "sideEffects": false,
|
---|
| 9 | "scripts": {
|
---|
| 10 | "build": "rollup --input index.js --file index.cjs.js --format cjs",
|
---|
| 11 | "coverage": "nyc tape -- test/**/*.test.js",
|
---|
| 12 | "lint": "eslint . --ignore-path .gitignore",
|
---|
| 13 | "test": "tape test/**/*.test.js",
|
---|
| 14 | "precoverage": "npm run build",
|
---|
| 15 | "pretest": "npm run lint && npm run build",
|
---|
| 16 | "prepublishOnly": "npm run build"
|
---|
| 17 | },
|
---|
| 18 | "files": [
|
---|
| 19 | "index.js",
|
---|
| 20 | "index.cjs.js",
|
---|
| 21 | "index.d.ts"
|
---|
| 22 | ],
|
---|
| 23 | "repository": {
|
---|
| 24 | "type": "git",
|
---|
| 25 | "url": "git+ssh://git@github.com/rexxars/hyphenate-style-name.git"
|
---|
| 26 | },
|
---|
| 27 | "keywords": [
|
---|
| 28 | "hyphenate",
|
---|
| 29 | "style",
|
---|
| 30 | "css",
|
---|
| 31 | "camelcase"
|
---|
| 32 | ],
|
---|
| 33 | "author": "Espen Hovlandsdal <espen@hovlandsdal.com>",
|
---|
| 34 | "license": "BSD-3-Clause",
|
---|
| 35 | "bugs": {
|
---|
| 36 | "url": "https://github.com/rexxars/hyphenate-style-name/issues"
|
---|
| 37 | },
|
---|
| 38 | "homepage": "https://github.com/rexxars/hyphenate-style-name#readme",
|
---|
| 39 | "devDependencies": {
|
---|
| 40 | "@semantic-release/changelog": "^6.0.3",
|
---|
| 41 | "@semantic-release/exec": "^6.0.3",
|
---|
| 42 | "@semantic-release/git": "^10.0.1",
|
---|
| 43 | "conventional-changelog-conventionalcommits": "^7.0.2",
|
---|
| 44 | "eslint": "^8.57.0",
|
---|
| 45 | "eslint-config-prettier": "^8.10.0",
|
---|
| 46 | "eslint-config-sanity": "^7.1.2",
|
---|
| 47 | "prettier": "^3.2.5",
|
---|
| 48 | "rollup": "^4.17.2",
|
---|
| 49 | "semantic-release": "^23.1.1",
|
---|
| 50 | "tape": "^5.7.5"
|
---|
| 51 | }
|
---|
| 52 | }
|
---|