-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "case-converter",
"description": "transform object to use different case conventions",
"main": "./dist/index.js",
"files": ["dist", "README.md"],
"scripts": {
"cm": "git-cz",
"precommit": "lint-staged && npm run cover",
"check-coverage":
"nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage":
"cat ./coverage/lcov.info | codecov token=$CODECOV_TOKEN",
"build": "webpack",
"prebuild": "rm -rf dist",
"test": "jest",
"cover": "npm test -- --coverage",
"semantic-release":
"semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/Moezalez/case-converter.git"
},
"keywords": [
"camelCase",
"snake_case",
"camel",
"snake",
"case",
"converter"
],
"author": "Moritz Sattler",
"license": "MIT",
"bugs": {
"url": "https://github.com/Moezalez/case-converter/issues"
},
"homepage": "https://github.com/Moezalez/case-converter#readme",
"tonicExampleFilename": "example.js",
"devDependencies": {
"babel-loader": "6.2.4",
"babel-plugin-__coverage__": "11.0.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-register": "6.9.0",
"codecov": "3.7.1",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"semantic-release": "^4.3.5",
"standard": "7.1.2",
"webpack": "1.13.1"
},
"dependencies": {
"lodash.camelcase": "^4.1.1",
"lodash.flow": "^3.5.0",
"lodash.kebabcase": "^4.0.1",
"lodash.snakecase": "^4.0.1",
"lodash.upperfirst": "^4.3.1"
},
"babel": {
"presets": ["es2015", "react"]
},
"standard": {
"globals": ["describe", "it"]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json}": ["prettier --write", "git add"]
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
}
}