-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "lucky-case",
"version": "1.1.8",
"description": "The lucky javascript library to identify and convert strings from any letter case to another",
"exports": {
".": "./src/lucky-case/lucky-case.js",
"./": "./src/lucky-case/",
"./string": "./src/lucky-case/string.js"
},
"main": "src/lucky-case/lucky-case.js",
"scripts": {
"test": "jasmine",
"build": "node scripts/build.js",
"doc": "node scripts/doc.js"
},
"files": [
"dist/lucky-case.js",
"dist/lucky-case.string.js",
"src/**/*",
"doc/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/magynhard/lucky-case.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-preset-env": "^1.7.0",
"chalk": "^4.1.0",
"jasmine": "^3.6.3",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"uglify-js": "^3.12.1"
},
"keywords": [
"javascript",
"string",
"letter",
"case",
"transformation",
"conversion",
"snake",
"case",
"camel",
"dash",
"upper",
"lower",
"train",
"pascal",
"word",
"capital",
"sentence"
],
"author": "Matthäus J. N. Beyrle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/magynhard/lucky-case/issues"
},
"homepage": "https://github.com/magynhard/lucky-case#readme"
}