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.
39 lines
711 B
39 lines
711 B
{ |
|
"name": "camelcase", |
|
"version": "3.0.0", |
|
"description": "Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar", |
|
"license": "MIT", |
|
"repository": "sindresorhus/camelcase", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "http://sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=0.10.0" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava" |
|
}, |
|
"files": [ |
|
"index.js" |
|
], |
|
"keywords": [ |
|
"camelcase", |
|
"camel-case", |
|
"camel", |
|
"case", |
|
"dash", |
|
"hyphen", |
|
"dot", |
|
"underscore", |
|
"separator", |
|
"string", |
|
"text", |
|
"convert" |
|
], |
|
"devDependencies": { |
|
"ava": "*", |
|
"xo": "*" |
|
} |
|
}
|
|
|