-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "camel-humps",
"version": "1.0.3",
"description": "Allow accessing object with snake_case property names using camelCase names",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "mocha",
"test:coverage": "nyc npm test",
"lint": "eslint src",
"build": "webpack",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zooz/camelHumps.git"
},
"keywords": [
"object",
"camel",
"snake",
"kebab",
"camel-case",
"snake-case",
"kebab-case"
],
"author": "Kobi Carmeli",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Zooz/camelHumps/issues"
},
"homepage": "https://github.com/Zooz/camelHumps#readme",
"nyc": {
"check-coverage": true,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 95,
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0"
}
}