source: imaps-frontend/node_modules/param-case/package.json

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 2.1 KB
Line 
1{
2 "name": "param-case",
3 "version": "3.0.4",
4 "description": "Transform into a lower cased string with dashes between 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 "param",
29 "case",
30 "kebab",
31 "hyphen",
32 "dash",
33 "dash-case",
34 "param-case",
35 "convert",
36 "transform"
37 ],
38 "author": {
39 "name": "Blake Embrey",
40 "email": "hello@blakeembrey.com",
41 "url": "http://blakeembrey.me"
42 },
43 "license": "MIT",
44 "bugs": {
45 "url": "https://github.com/blakeembrey/change-case/issues"
46 },
47 "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/param-case#readme",
48 "size-limit": [
49 {
50 "path": "dist/index.js",
51 "limit": "400 B"
52 }
53 ],
54 "jest": {
55 "roots": [
56 "<rootDir>/src/"
57 ],
58 "transform": {
59 "\\.tsx?$": "ts-jest"
60 },
61 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
62 "moduleFileExtensions": [
63 "ts",
64 "tsx",
65 "js",
66 "jsx",
67 "json",
68 "node"
69 ]
70 },
71 "publishConfig": {
72 "access": "public"
73 },
74 "dependencies": {
75 "dot-case": "^3.0.4",
76 "tslib": "^2.0.3"
77 },
78 "devDependencies": {
79 "@size-limit/preset-small-lib": "^2.2.1",
80 "@types/jest": "^24.0.23",
81 "@types/node": "^12.12.14",
82 "jest": "^24.9.0",
83 "rimraf": "^3.0.0",
84 "ts-jest": "^24.2.0",
85 "tslint": "^5.20.1",
86 "tslint-config-prettier": "^1.18.0",
87 "tslint-config-standard": "^9.0.0",
88 "typescript": "^4.1.2"
89 },
90 "gitHead": "76a21a7f6f2a226521ef6abd345ff309cbd01fb0"
91}
Note: See TracBrowser for help on using the repository browser.