This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

41 lines
912 B
JSON
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
{
"name": "slugify",
"version": "1.5.0",
"description": "Slugifies a String",
"keywords": [
"slugify",
"slug",
"url",
"urlify"
],
"license": "MIT",
"homepage": "https://github.com/simov/slugify",
"author": "Simeon Velichkov <simeonvelichkov@gmail.com> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/simov/slugify.git"
},
"devDependencies": {
"coveralls": "^3.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
},
"main": "./slugify.js",
"files": [
"LICENSE",
"README.md",
"slugify.d.ts",
"slugify.js"
],
"types": "slugify.d.ts",
"scripts": {
"build": "node bin/build",
"test:ci": "npx mocha --recursive",
"test:cov": "npx nyc --reporter=lcov --reporter=text-summary mocha -- --recursive",
"test": "npm run build && npm run test:ci"
},
"engines": {
"node": ">=8.0.0"
}
}