1 | {
|
2 | "name": "no-case",
|
3 | "version": "4.0.0",
|
4 | "description": "Transform any case string into a lower case string with a space between each word",
|
5 | "type": "module",
|
6 | "files": [
|
7 | "dist/"
|
8 | ],
|
9 | "exports": {
|
10 | ".": "./dist/index.js"
|
11 | },
|
12 | "scripts": {
|
13 | "format": "ts-scripts format",
|
14 | "specs": "ts-scripts specs",
|
15 | "test": "ts-scripts test",
|
16 | "build": "ts-scripts build",
|
17 | "bench": "vitest bench",
|
18 | "prepublishOnly": "npm run build"
|
19 | },
|
20 | "repository": {
|
21 | "type": "git",
|
22 | "url": "git://github.com/blakeembrey/change-case.git"
|
23 | },
|
24 | "keywords": [
|
25 | "no",
|
26 | "case",
|
27 | "space",
|
28 | "lower",
|
29 | "convert",
|
30 | "transform"
|
31 | ],
|
32 | "author": {
|
33 | "name": "Blake Embrey",
|
34 | "email": "hello@blakeembrey.com",
|
35 | "url": "http://blakeembrey.me"
|
36 | },
|
37 | "license": "MIT",
|
38 | "bugs": {
|
39 | "url": "https://github.com/blakeembrey/change-case/issues"
|
40 | },
|
41 | "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/no-case#readme",
|
42 | "publishConfig": {
|
43 | "access": "public"
|
44 | }
|
45 | }
|