UNPKG

1.1 kBJSONView Raw
1{
2 "name": "pascal-case",
3 "version": "4.0.0",
4 "description": "Transform into a string of capitalized words without separators",
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 "pascal",
26 "case",
27 "camel",
28 "capital",
29 "convert",
30 "transform",
31 "identifier",
32 "class"
33 ],
34 "author": {
35 "name": "Blake Embrey",
36 "email": "hello@blakeembrey.com",
37 "url": "http://blakeembrey.me"
38 },
39 "license": "MIT",
40 "bugs": {
41 "url": "https://github.com/blakeembrey/change-case/issues"
42 },
43 "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/pascal-case#readme",
44 "publishConfig": {
45 "access": "public"
46 },
47 "dependencies": {
48 "no-case": "^4.0.0"
49 }
50}