-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "fast-case",
"version": "1.7.0",
"description": "A fast JS library for camelCase and PascalCase",
"author": "Jacob Gillespie <[email protected]>",
"homepage": "https://github.com/jacobwgillespie/fast-case",
"repository": "git://github.com/jacobwgillespie/fast-case.git",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"benchmark": "node benchmark.js",
"build": "microbundle build -f modern,cjs,umd",
"test": "ava"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false
},
"dependencies": {},
"devDependencies": {
"ava": "^5.1.1",
"benchmark": "^2.1.4",
"humps": "^2.0.1",
"microbundle": "^0.15.0",
"prettier": "^2.0.5",
"typescript": "^4.0.2",
"xcase": "^2.0.1",
"ts-case-convert": "^2.0.7"
}
}