-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "casey-js",
"description": "A string utility module that handles all cases gracefully.",
"version": "1.7.1",
"main": "dist/casey.js",
"author": "Jakub Barczyk",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jakubbarczyk/casey-js.git"
},
"bugs": {
"url": "https://github.com/jakubbarczyk/casey-js/issues"
},
"homepage": "https://github.com/jakubbarczyk/casey-js#readme",
"license": "MIT",
"scripts": {
"build": "rollup -i src/casey.js -f umd -n casey -o dist/casey.js -m",
"prebuild": "npm test",
"test": "mocha --require babel-core/register"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"rollup": "^3.20.7"
},
"keywords": [
"camel",
"case",
"kebab",
"library",
"lower",
"pascal",
"snake",
"string",
"train",
"upper",
"utility"
],
"engines": {
"node": ">=18"
}
}