-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 KB
/
package.json
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
44
45
46
47
{
"name": "camelcase-keys-recursive",
"version": "2.0.0",
"description": "Adaptation of camelcase-keys but recursive. ",
"repository": {
"type": "git",
"url": "git://github.com/mikeljames/camelcase-keys-recursive.git"
},
"main": "lib/index.js",
"scripts": {
"build": "babel --source-maps --out-dir lib/ src/",
"lint": "eslint --ext .js --ext .jsx ./ && echo No linting errors.",
"pretest": "npm run build",
"test": "mocha test/ --recursive --compilers js:babel/register",
"test:watch": "npm run test -- --watch",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel/register --colors --reporter dot test/",
"prepublish": "npm run build"
},
"keywords": [
"camelcase",
"keys",
"object",
"recursive",
"camelcase-keys",
"snake-case"
],
"author": {
"name": "Mike James",
"email": "[email protected]",
"url": "http://mikejam.es"
},
"license": "MIT",
"dependencies": {
"map-obj": "^1.0.0"
},
"devDependencies": {
"babel": "^5.x.x",
"babel-eslint": "^4.1.5",
"chai": "^2.1.1",
"eslint": "^1.9.0",
"eslint-config-pebblecode": "^1.0.0",
"eslint-plugin-react": "^3.8.0",
"istanbul": "^0.4.0",
"mocha": "^2.2.1",
"pre-commit": "^1.0.6"
}
}