UNPKG

2.12 kBJSONView Raw
1{
2 "name": "header-case",
3 "version": "2.0.4",
4 "description": "Transform into a dash separated string of capitalized words",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "module": "dist.es2015/index.js",
8 "sideEffects": false,
9 "jsnext:main": "dist.es2015/index.js",
10 "files": [
11 "dist/",
12 "dist.es2015/",
13 "LICENSE"
14 ],
15 "scripts": {
16 "lint": "tslint \"src/**/*\" --project tsconfig.json",
17 "build": "rimraf dist/ dist.es2015/ && tsc && tsc -P tsconfig.es2015.json",
18 "specs": "jest --coverage",
19 "test": "npm run build && npm run lint && npm run specs",
20 "size": "size-limit",
21 "prepare": "npm run build"
22 },
23 "repository": {
24 "type": "git",
25 "url": "git://github.com/blakeembrey/change-case.git"
26 },
27 "keywords": [
28 "header",
29 "case",
30 "dash",
31 "hyphen",
32 "capitalize",
33 "convert",
34 "transform"
35 ],
36 "author": {
37 "name": "Blake Embrey",
38 "email": "hello@blakeembrey.com",
39 "url": "http://blakeembrey.me"
40 },
41 "license": "MIT",
42 "bugs": {
43 "url": "https://github.com/blakeembrey/change-case/issues"
44 },
45 "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/header-case#readme",
46 "size-limit": [
47 {
48 "path": "dist/index.js",
49 "limit": "400 B"
50 }
51 ],
52 "jest": {
53 "roots": [
54 "<rootDir>/src/"
55 ],
56 "transform": {
57 "\\.tsx?$": "ts-jest"
58 },
59 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
60 "moduleFileExtensions": [
61 "ts",
62 "tsx",
63 "js",
64 "jsx",
65 "json",
66 "node"
67 ]
68 },
69 "publishConfig": {
70 "access": "public"
71 },
72 "dependencies": {
73 "capital-case": "^1.0.4",
74 "tslib": "^2.0.3"
75 },
76 "devDependencies": {
77 "@size-limit/preset-small-lib": "^2.2.1",
78 "@types/jest": "^24.0.23",
79 "@types/node": "^12.12.14",
80 "jest": "^24.9.0",
81 "rimraf": "^3.0.0",
82 "ts-jest": "^24.2.0",
83 "tslint": "^5.20.1",
84 "tslint-config-prettier": "^1.18.0",
85 "tslint-config-standard": "^9.0.0",
86 "typescript": "^4.1.2"
87 },
88 "gitHead": "76a21a7f6f2a226521ef6abd345ff309cbd01fb0"
89}