UNPKG

1.11 kBJSONView Raw
1{
2 "name": "slugify",
3 "version": "1.6.6",
4 "description": "Slugifies a String",
5 "keywords": [
6 "slugify",
7 "slug",
8 "url",
9 "urlify"
10 ],
11 "license": "MIT",
12 "homepage": "https://github.com/simov/slugify",
13 "author": "Simeon Velichkov <simeonvelichkov@gmail.com> (https://simov.github.io)",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/simov/slugify.git"
17 },
18 "devDependencies": {
19 "coveralls": "^3.1.0",
20 "github-changes": "^2.0.3",
21 "mocha": "^7.2.0",
22 "nyc": "^15.1.0"
23 },
24 "main": "./slugify.js",
25 "files": [
26 "LICENSE",
27 "README.md",
28 "slugify.d.ts",
29 "slugify.js"
30 ],
31 "types": "slugify.d.ts",
32 "scripts": {
33 "build": "node bin/build",
34 "build:changelog": "github-changes --owner simov --repository slugify --only-pulls --use-commit-body --date-format '(YYYY-MM-DD)' --file CHANGELOG.md --verbose",
35 "test:ci": "npx mocha --recursive",
36 "test:cov": "npx nyc --reporter=lcov --reporter=text-summary mocha -- --recursive",
37 "test": "npm run build && npm run test:ci"
38 },
39 "engines": {
40 "node": ">=8.0.0"
41 }
42}