You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
812 B
44 lines
812 B
{ |
|
"name": "camelcase", |
|
"version": "6.3.0", |
|
"description": "Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`", |
|
"license": "MIT", |
|
"repository": "sindresorhus/camelcase", |
|
"funding": "https://github.com/sponsors/sindresorhus", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "https://sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=10" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava && tsd" |
|
}, |
|
"files": [ |
|
"index.js", |
|
"index.d.ts" |
|
], |
|
"keywords": [ |
|
"camelcase", |
|
"camel-case", |
|
"camel", |
|
"case", |
|
"dash", |
|
"hyphen", |
|
"dot", |
|
"underscore", |
|
"separator", |
|
"string", |
|
"text", |
|
"convert", |
|
"pascalcase", |
|
"pascal-case" |
|
], |
|
"devDependencies": { |
|
"ava": "^1.4.1", |
|
"tsd": "^0.11.0", |
|
"xo": "^0.28.3" |
|
} |
|
}
|
|
|