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.
38 lines
717 B
38 lines
717 B
{ |
|
"name": "decamelize", |
|
"version": "1.2.0", |
|
"description": "Convert a camelized string into a lowercased one with a custom separator: unicornRainbow → unicorn_rainbow", |
|
"license": "MIT", |
|
"repository": "sindresorhus/decamelize", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=0.10.0" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava" |
|
}, |
|
"files": [ |
|
"index.js" |
|
], |
|
"keywords": [ |
|
"decamelize", |
|
"decamelcase", |
|
"camelcase", |
|
"lowercase", |
|
"case", |
|
"dash", |
|
"hyphen", |
|
"string", |
|
"str", |
|
"text", |
|
"convert" |
|
], |
|
"devDependencies": { |
|
"ava": "*", |
|
"xo": "*" |
|
} |
|
}
|
|
|