UNPKG

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