Changeset 79a0317 for imaps-frontend/node_modules/rtl-css-js
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/rtl-css-js/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "rtl-css-js", 3 "version": "1.16.1", 2 "_from": "rtl-css-js@^1.16.1", 3 "_id": "rtl-css-js@1.16.1", 4 "_inBundle": false, 5 "_integrity": "sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==", 6 "_location": "/rtl-css-js", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "rtl-css-js@^1.16.1", 12 "name": "rtl-css-js", 13 "escapedName": "rtl-css-js", 14 "rawSpec": "^1.16.1", 15 "saveSpec": null, 16 "fetchSpec": "^1.16.1" 17 }, 18 "_requiredBy": [ 19 "/nano-css" 20 ], 21 "_resolved": "https://registry.npmjs.org/rtl-css-js/-/rtl-css-js-1.16.1.tgz", 22 "_shasum": "4b48b4354b0ff917a30488d95100fbf7219a3e80", 23 "_spec": "rtl-css-js@^1.16.1", 24 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/nano-css", 25 "author": { 26 "name": "Kent C. Dodds", 27 "email": "kent@doddsfamily.us", 28 "url": "http://kentcdodds.com/" 29 }, 30 "bugs": { 31 "url": "https://github.com/kentcdodds/rtl-css-js/issues" 32 }, 33 "bundleDependencies": false, 34 "dependencies": { 35 "@babel/runtime": "^7.1.2" 36 }, 37 "deprecated": false, 4 38 "description": "Right To Left conversion for CSS in JS objects", 5 "main": "dist/cjs/index.js", 6 "jsnext:main": "dist/esm/index.js", 7 "module": "dist/esm/index.js", 8 "types": "types.d.ts", 39 "devDependencies": { 40 "kcd-scripts": "^1.11.0", 41 "npm-run-all": "^4.1.1", 42 "rimraf": "^3.0.0", 43 "tiny-glob": "^0.2.0" 44 }, 45 "eslintConfig": { 46 "extends": "./node_modules/kcd-scripts/eslint.js" 47 }, 48 "eslintIgnore": [ 49 "node_modules", 50 "coverage", 51 "dist" 52 ], 9 53 "exports": { 10 54 ".": { … … 31 75 "./package.json": "./package.json" 32 76 }, 33 "scripts": {34 "build": "rimraf dist && npm-run-all build:**",35 "build:bundlers": "kcd-scripts build --bundle cjs,esm --environment BUILD_INPUT:src/*.js --no-clean",36 "build:umd:main": "kcd-scripts build --bundle umd,umd.min BUILD_NAME:rtlCSSJS --no-clean",37 "build:umd:core": "kcd-scripts build --bundle umd,umd.min --environment BUILD_NAME:rtlCSSJSCore,BUILD_FILENAME_SUFFIX:\".core\",BUILD_INPUT:src/core.js --no-clean",38 "postbuild:bundlers": "node scripts/add-proxies-typings.js",39 "lint": "kcd-scripts lint",40 "test": "kcd-scripts test",41 "test:update": "npm run test -s -- --coverage --updateSnapshot",42 "validate": "kcd-scripts validate"43 },44 "husky": {45 "hooks": {46 "pre-commit": "kcd-scripts pre-commit"47 }48 },49 77 "files": [ 50 78 "dist", … … 55 83 "core.esm.d.ts" 56 84 ], 85 "homepage": "https://github.com/kentcdodds/rtl-css-js#readme", 86 "husky": { 87 "hooks": { 88 "pre-commit": "kcd-scripts pre-commit" 89 } 90 }, 91 "jsnext:main": "dist/esm/index.js", 57 92 "keywords": [ 58 93 "css-in-js", … … 61 96 "cssjanus" 62 97 ], 63 "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",64 98 "license": "MIT", 65 "devDependencies": { 66 "kcd-scripts": "^1.11.0", 67 "npm-run-all": "^4.1.1", 68 "rimraf": "^3.0.0", 69 "tiny-glob": "^0.2.0" 70 }, 71 "eslintConfig": { 72 "extends": "./node_modules/kcd-scripts/eslint.js" 73 }, 74 "eslintIgnore": [ 75 "node_modules", 76 "coverage", 77 "dist" 78 ], 99 "main": "dist/cjs/index.js", 100 "module": "dist/esm/index.js", 101 "name": "rtl-css-js", 79 102 "repository": { 80 103 "type": "git", 81 "url": " https://github.com/kentcdodds/rtl-css-js.git"104 "url": "git+https://github.com/kentcdodds/rtl-css-js.git" 82 105 }, 83 "bugs": { 84 "url": "https://github.com/kentcdodds/rtl-css-js/issues" 106 "scripts": { 107 "build": "rimraf dist && npm-run-all build:**", 108 "build:bundlers": "kcd-scripts build --bundle cjs,esm --environment BUILD_INPUT:src/*.js --no-clean", 109 "build:umd:core": "kcd-scripts build --bundle umd,umd.min --environment BUILD_NAME:rtlCSSJSCore,BUILD_FILENAME_SUFFIX:\".core\",BUILD_INPUT:src/core.js --no-clean", 110 "build:umd:main": "kcd-scripts build --bundle umd,umd.min BUILD_NAME:rtlCSSJS --no-clean", 111 "lint": "kcd-scripts lint", 112 "postbuild:bundlers": "node scripts/add-proxies-typings.js", 113 "test": "kcd-scripts test", 114 "test:update": "npm run test -s -- --coverage --updateSnapshot", 115 "validate": "kcd-scripts validate" 85 116 }, 86 "homepage": "https://github.com/kentcdodds/rtl-css-js#readme", 87 "dependencies": { 88 "@babel/runtime": "^7.1.2" 89 } 117 "types": "types.d.ts", 118 "version": "1.16.1" 90 119 }
Note:
See TracChangeset
for help on using the changeset viewer.