forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 952 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "url-slug",
"version": "3.0.2",
"description": "Slug generator with less than 1 KB and no dependencies, RFC 3986 compliant.",
"main": "dist/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production rollup --config",
"prepare": "npm run build",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "standard --env jest && jest"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.4",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"jest-esm-transformer": "^1.0.0",
"rollup": "^2.36.0",
"rollup-plugin-terser": "^7.0.2",
"standard": "*"
},
"repository": "https://github.com/stldo/url-slug",
"keywords": [
"slug",
"slugify",
"url",
"urlify",
"url-safe",
"rfc 3986",
"string",
"seo"
],
"author": "stldo (https://github.com/stldo)",
"license": "MIT"
}