UNPKG

2.04 kBJSONView Raw
1{
2 "name": "is-lower-case",
3 "version": "2.0.2",
4 "description": "Returns `true` if the string is lower case only",
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 "is",
29 "lower",
30 "case",
31 "check",
32 "boolean"
33 ],
34 "author": {
35 "name": "Blake Embrey",
36 "email": "hello@blakeembrey.com",
37 "url": "http://blakeembrey.me"
38 },
39 "license": "MIT",
40 "bugs": {
41 "url": "https://github.com/blakeembrey/change-case/issues"
42 },
43 "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/is-lower-case#readme",
44 "size-limit": [
45 {
46 "path": "dist/index.js",
47 "limit": "50 B"
48 }
49 ],
50 "jest": {
51 "roots": [
52 "<rootDir>/src/"
53 ],
54 "transform": {
55 "\\.tsx?$": "ts-jest"
56 },
57 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
58 "moduleFileExtensions": [
59 "ts",
60 "tsx",
61 "js",
62 "jsx",
63 "json",
64 "node"
65 ]
66 },
67 "publishConfig": {
68 "access": "public"
69 },
70 "devDependencies": {
71 "@size-limit/preset-small-lib": "^2.2.1",
72 "@types/jest": "^24.0.23",
73 "@types/node": "^12.12.14",
74 "jest": "^24.9.0",
75 "rimraf": "^3.0.0",
76 "ts-jest": "^24.2.0",
77 "tslint": "^5.20.1",
78 "tslint-config-prettier": "^1.18.0",
79 "tslint-config-standard": "^9.0.0",
80 "typescript": "^4.1.2"
81 },
82 "dependencies": {
83 "tslib": "^2.0.3"
84 },
85 "gitHead": "76a21a7f6f2a226521ef6abd345ff309cbd01fb0"
86}