-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·86 lines (86 loc) · 2.59 KB
/
package.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.59 KB
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
{
"name": "transform-case",
"version": "1.2.0",
"description": "Transforms casing and spacing of a string",
"main": "dist/transformCase.js",
"module": "module/transformCase.js",
"directories": {
"test": "test"
},
"type": "module",
"types": "types/index.d.ts",
"scripts": {
"prebuild": "cf dist module types && prettier './src/*.ts' --write",
"build": "rollup --config",
"coverage": "cf coverage && jest --coverage",
"once": "npm run test && npm run build",
"prepublish": "npm run once",
"pretest": "cf temp && eslint src/*.ts --fix",
"test": "tsc && jest",
"watch": "onchange --initial \"src/*.ts\" -- npm run once --silent"
},
"keywords": [
"convert",
"transform",
"case",
"camelCase",
"pascalCase",
"human",
"sentence",
"humanSentence",
"title",
"humanTitle",
"dotCase",
"paramCase",
"pathCase",
"searchCase",
"snakeCase",
"spaceCase",
"constantCase",
"headerCase",
"front-end"
],
"author": "Onno van der Zee",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ovanderzee/transform-case.git"
},
"bugs": {
"url": "https://github.com/ovanderzee/transform-case/issues"
},
"homepage": "https://github.com/ovanderzee/transform-case#readme",
"dependencies": {
"entities": "^4.5.0",
"fold-to-ascii": "^5.0.1",
"my-lib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/fold-to-ascii": "^5.0.0",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"clear-folder": "^5.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"onchange": "^7.1.0",
"prettier": "^2.8.8",
"rollup": "^3.25.3",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.5"
}
}