-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "xcase",
"version": "2.0.1",
"description": "Blazingly fast recursive convertion to and from camelCase or PascalCase for Objects and Arrays",
"main": "es5/index",
"scripts": {
"test": "npm run build && mocha",
"build": "rollup index.js -f es | babel --presets es2015 -o es5/index.js && browserify -s xcase -r ./es5/index.js -o dist/xcase.js && uglifyjs dist/xcase.js > dist/xcase.min.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/encharm/xcase.git"
},
"keywords": [
"recursive",
"convertion",
"camelcase",
"keys",
"object",
"decamelize",
"camelize"
],
"author": "Damian Kaczmarek <damian@codecharm.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/encharm/xcase/issues"
},
"homepage": "https://github.com/encharm/xcase#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"benchmark": "^2.1.1",
"bower": "^1.7.9",
"browserify": "^13.1.0",
"humps": "^1.1.0",
"lodash": "^4.15.0",
"mocha": "^3.0.2",
"rollup": "^0.41.4",
"uglify-js": "^2.7.3"
}
}