@qlean/york-web
Advanced tools
Comparing version 0.2.0 to 0.3.6-alfa-0
@@ -6,15 +6,40 @@ 'use strict'; | ||
}); | ||
exports.Text = undefined; | ||
var _Text = require('./components/Text/Text'); | ||
var _Navigation = require('components/Navigation'); | ||
Object.defineProperty(exports, 'Text', { | ||
Object.defineProperty(exports, 'Navigation', { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_Text).default; | ||
return _interopRequireDefault(_Navigation).default; | ||
} | ||
}); | ||
require('./styles/fonts/setupFonts'); | ||
var _FloatingControls = require('components/FloatingControls'); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
Object.defineProperty(exports, 'FloatingControls', { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_FloatingControls).default; | ||
} | ||
}); | ||
var _FloatingFormScroller = require('components/FloatingFormScroller'); | ||
Object.defineProperty(exports, 'floatingFormRefNames', { | ||
enumerable: true, | ||
get: function get() { | ||
return _FloatingFormScroller.floatingFormRefNames; | ||
} | ||
}); | ||
Object.defineProperty(exports, 'FloatingFormScroller', { | ||
enumerable: true, | ||
get: function get() { | ||
return _interopRequireDefault(_FloatingFormScroller).default; | ||
} | ||
}); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
var test = 'test'; | ||
exports.default = test; |
100
package.json
{ | ||
"name": "@qlean/york-web", | ||
"version": "0.2.0", | ||
"main": "lib/index.js", | ||
"module": "es/index.js", | ||
"version": "0.3.6-alfa-0", | ||
"description": "", | ||
"main": "dist/main.js", | ||
"scripts": { | ||
"build": "npm run build:cjs && npm run build:es", | ||
"build:cjs": "cross-env BABEL_ENV=cjs babel src -d lib --ignore __test__", | ||
"build:es": "cross-env BABEL_ENV=es babel src -d es --ignore __test__", | ||
"clean": "rimraf es/* lib/*", | ||
"lint": "eslint .", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"test:coverage": "jest --coverage", | ||
"watch": "babel src -d lib --ignore __test__ -w" | ||
"build": "npm run clean && babel src -d lib --ignore test.js", | ||
"clean": "rimraf lib", | ||
"lint": "eslint src --ext .js", | ||
"watch_": "babel src -d lib --ignore test.js -w", | ||
"watch": "webpack --watch", | ||
"webpack": "webpack" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/qlean/york.git" | ||
"dependencies": { | ||
"@qlean/york-core": "^0.3.6-test.6", | ||
"lodash.throttle": "^4.1.1", | ||
"prop-types": "^15.5.10", | ||
"ramda": "^0.24.1", | ||
"react-inlinesvg": "^0.8.3" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.26.0", | ||
"babel-eslint": "^8.0.1", | ||
"babel-jest": "^21.2.0", | ||
"babel-preset-env": "^1.6.1", | ||
"babel-core": "^6.26.3", | ||
"babel-loader": "^7.1.5", | ||
"babel-plugin-inline-react-svg": "^0.5.4", | ||
"babel-plugin-module-resolver": "^3.1.3", | ||
"babel-plugin-styled-components": "^1.10.0", | ||
"babel-preset-es2015": "^6.24.1", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-2": "^6.24.1", | ||
"cross-env": "^5.1.3", | ||
"enzyme": "^3.2.0", | ||
"enzyme-adapter-react-16": "^1.1.0", | ||
"enzyme-to-json": "^3.3.0", | ||
"eslint": "^4.9.0", | ||
"eslint-config-airbnb": "^16.1.0", | ||
"eslint-config-airbnb-base": "^12.1.0", | ||
"eslint-config-qlean": "^1.0.1", | ||
"eslint-plugin-import": "^2.8.0", | ||
"eslint-plugin-jsx-a11y": "^6.0.2", | ||
"eslint-plugin-no-loops": "^0.3.0", | ||
"eslint-plugin-react": "^7.4.0", | ||
"identity-obj-proxy": "^3.0.0", | ||
"jest": "^21.2.1", | ||
"jest-styled-components": "^4.9.0", | ||
"react": "^16.2.0", | ||
"react-dom": "^16.2.0", | ||
"react-test-renderer": "^16.2.0", | ||
"rimraf": "^2.6.2" | ||
"babel-preset-stage-0": "^6.24.1", | ||
"eslint": "4.12.1", | ||
"eslint-config-airbnb": "16.1.0", | ||
"eslint-config-airbnb-base": "12.1.0", | ||
"eslint-config-qlean": "1.0.1", | ||
"eslint-import-resolver-webpack": "0.8.3", | ||
"eslint-plugin-cypress": "^2.0.1", | ||
"eslint-plugin-import": "^2.12.0", | ||
"eslint-plugin-jsx-a11y": "6.0.2", | ||
"eslint-plugin-no-loops": "0.3.0", | ||
"eslint-plugin-react": "7.4.0", | ||
"file-loader": "^2.0.0", | ||
"react-router": "^3.2.1", | ||
"rimraf": "^2.6.2", | ||
"svgo": "^1.1.1", | ||
"svgo-loader": "^2.2.0", | ||
"webpack": "^4.29.1", | ||
"webpack-cli": "^3.2.3" | ||
}, | ||
"dependencies": { | ||
"@qlean/york-core": "^0.2.0", | ||
"prop-types": "^15.6.0", | ||
"styled-components": "^2.2.4" | ||
"peerDependencies": { | ||
"react": ">=16", | ||
"react-router": ">=3.2.1", | ||
"styled-components": ">=4.1.3" | ||
}, | ||
"jest": { | ||
"setupTestFrameworkScriptFile": "./setupTests.js", | ||
"snapshotSerializers": [ | ||
"enzyme-to-json/serializer" | ||
], | ||
"moduleNameMapper": { | ||
".+\\.(css|styl|less|sass|scss|png|jpg|otf|ttf|woff|woff2)$": "identity-obj-proxy" | ||
} | ||
}, | ||
"peerDependencies": { | ||
"react": ">=15" | ||
} | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
} |
@@ -1,3 +0,8 @@ | ||
import './styles/fonts/setupFonts'; | ||
export { default as Navigation } from 'components/Navigation'; | ||
export { default as Text } from './components/Text/Text'; //eslint-disable-line | ||
export { default as FloatingControls } from 'components/FloatingControls'; | ||
export { floatingFormRefNames, default as FloatingFormScroller } from 'components/FloatingFormScroller'; | ||
const test = 'test'; | ||
export default test; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No License Found
License(Experimental) License information could not be found.
Found 1 instance in 1 package
358671
67
0
4344
8
26
3
4
3
+ Addedlodash.throttle@^4.1.1
+ Addedramda@^0.24.1
+ Addedreact-inlinesvg@^0.8.3
+ Added@emotion/is-prop-valid@1.2.2(transitive)
+ Added@emotion/memoize@0.8.1(transitive)
+ Added@emotion/unitless@0.8.1(transitive)
+ Added@qlean/york-core@0.3.6-test.6(transitive)
+ Added@types/cookie@0.6.0(transitive)
+ Added@types/stylis@4.2.5(transitive)
+ Addedcookie@1.0.2(transitive)
+ Addedcss-to-react-native@3.2.0(transitive)
+ Addedcsstype@3.1.3(transitive)
+ Addedhttpplease@0.16.4(transitive)
+ Addedlodash.throttle@4.1.1(transitive)
+ Addednanoid@3.3.8(transitive)
+ Addedonce@1.4.0(transitive)
+ Addedpicocolors@1.1.1(transitive)
+ Addedpostcss@8.4.38(transitive)
+ Addedpostcss-value-parser@4.2.0(transitive)
+ Addedramda@0.24.1(transitive)
+ Addedreact-dom@16.14.0(transitive)
+ Addedreact-inlinesvg@0.8.4(transitive)
+ Addedreact-router@7.0.2(transitive)
+ Addedscheduler@0.19.1(transitive)
+ Addedset-cookie-parser@2.7.1(transitive)
+ Addedshallowequal@1.1.0(transitive)
+ Addedsource-map-js@1.2.1(transitive)
+ Addedstyled-components@6.1.13(transitive)
+ Addedstylis@4.3.2(transitive)
+ Addedtslib@2.6.2(transitive)
+ Addedturbo-stream@2.4.0(transitive)
+ Addedurllite@0.5.0(transitive)
+ Addedwrappy@1.0.2(transitive)
+ Addedxmlhttprequest@1.8.0(transitive)
+ Addedxtend@3.0.04.0.2(transitive)
- Removedstyled-components@^2.2.4
- Removed@qlean/york-core@0.2.2(transitive)
- Removedasap@2.0.6(transitive)
- Removedbase64-js@1.5.1(transitive)
- Removedbuffer@5.7.1(transitive)
- Removedcore-js@1.2.7(transitive)
- Removedcss-to-react-native@2.3.2(transitive)
- Removedencoding@0.1.13(transitive)
- Removedfbjs@0.8.18(transitive)
- Removedhas-flag@1.0.0(transitive)
- Removedhoist-non-react-statics@1.2.0(transitive)
- Removediconv-lite@0.6.3(transitive)
- Removedieee754@1.2.1(transitive)
- Removedis-plain-object@2.0.4(transitive)
- Removedis-stream@1.1.0(transitive)
- Removedisobject@3.0.1(transitive)
- Removedisomorphic-fetch@2.2.1(transitive)
- Removednode-fetch@1.7.3(transitive)
- Removedpostcss-value-parser@3.3.1(transitive)
- Removedpromise@7.3.1(transitive)
- Removedramda@0.30.1(transitive)
- Removedsafer-buffer@2.1.2(transitive)
- Removedsetimmediate@1.0.5(transitive)
- Removedstyled-components@2.4.1(transitive)
- Removedstylis@3.5.4(transitive)
- Removedsupports-color@3.2.3(transitive)
- Removedua-parser-js@0.7.39(transitive)
- Removedwhatwg-fetch@3.6.20(transitive)
Updatedprop-types@^15.5.10