-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 975 Bytes
/
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
{
"name": "case-modifier",
"version": "0.1.1",
"description": "Convert string to target CaseType, like: camelCase, snakeCase, properCase, constantCase... ",
"main": "dist/case-modifier.cjs.js",
"module": "dist/case-modifier.esm.js",
"browser": "dist/case-modifier.umd.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"keywords": [
"case-modifier",
"case-convert",
"camelCase",
"snakeCase",
"properCase",
"constantCase"
],
"author": "rexerwang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rexerwang/case-modifier.git"
},
"bugs": {
"url": "https://github.com/rexerwang/case-modifier/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"rollup": "^1.25.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}