65 lines
1.9 KiB
JSON
65 lines
1.9 KiB
JSON
{
|
|
"name": "ent",
|
|
"description": "Encode and decode HTML entities",
|
|
"version": "2.2.1",
|
|
"repository": "https://github.com/ljharb/ent.git",
|
|
"author": "James Halliday <mail@substack.net> (http://substack.net)",
|
|
"main": "./index.js",
|
|
"keywords": [
|
|
"entities",
|
|
"entitify",
|
|
"entity",
|
|
"html",
|
|
"encode",
|
|
"decode"
|
|
],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
"prepublishOnly": "safe-publish-latest && npm run build",
|
|
"lint": "eslint --ext=js,mjs .",
|
|
"postlint": "evalmd readme.markdown",
|
|
"pretest": "npm run lint",
|
|
"tests-only": "tape 'test/**/*.js'",
|
|
"test": "npm run tests-only",
|
|
"posttest": "aud --production",
|
|
"build": "node build",
|
|
"version": "auto-changelog && git add CHANGELOG.md",
|
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
|
},
|
|
"dependencies": {
|
|
"punycode": "^1.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@ljharb/eslint-config": "^21.1.1",
|
|
"aud": "^2.0.4",
|
|
"auto-changelog": "^2.4.0",
|
|
"eslint": "=8.8.0",
|
|
"evalmd": "^0.0.19",
|
|
"in-publish": "^2.0.1",
|
|
"npmignore": "^0.3.1",
|
|
"safe-publish-latest": "^2.0.0",
|
|
"tape": "^5.8.1"
|
|
},
|
|
"testling": {
|
|
"files": "test/*.js"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.4"
|
|
},
|
|
"auto-changelog": {
|
|
"output": "CHANGELOG.md",
|
|
"template": "keepachangelog",
|
|
"unreleased": false,
|
|
"commitLimit": false,
|
|
"backfillLimit": false,
|
|
"hideCredit": true
|
|
},
|
|
"publishConfig": {
|
|
"ignore": [
|
|
".github/workflows",
|
|
"build"
|
|
]
|
|
}
|
|
}
|