Comparing version 1.1.1 to 1.1.3
146
package.json
{ | ||
"name": "vis-uuid", | ||
"version": "1.1.1", | ||
"description": "UUIDv1 and UUIDv4 generator.", | ||
"main": "dist/umd.js", | ||
"module": "dist/esm.js", | ||
"types": "dist/types/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/visjs/vis-uuid.git" | ||
}, | ||
"author": "Alex de Mulder <alexdemulder@gmail.com>", | ||
"contributors": [ | ||
"jos <wjosdejong@gmail.com>", | ||
"macleodbroad-wf <macleodbroad-wf@users.noreply.github.com>", | ||
"mojoaxel <dev@wunschik.net>", | ||
"Thomaash <tom.vycital@gmail.com>" | ||
], | ||
"scripts": { | ||
"build": "npm run build:types && npm run build:code && npm run build:docs", | ||
"build:code": "rollup -c rollup.prod.config.js", | ||
"build:docs": "typedoc ./src", | ||
"build:types": "tsc -p tsconfig.types.json", | ||
"clean": "rimraf '{docs,dist}/*'", | ||
"fix": "npm run lint -- --fix", | ||
"lint": "eslint '{src,test}/**/*.{m,}{j,t}s{x,}'", | ||
"test": "BABEL_ENV=test mocha -r ./babel.mocha.js 'test/**/*.test.{j,t}s'", | ||
"type-check": "tsc --noemit" | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"keywords": [ | ||
"uuid", | ||
"vis", | ||
"vis.js" | ||
], | ||
"license": "(Apache-2.0 OR MIT)", | ||
"bugs": { | ||
"url": "https://github.com/visjs/vis-uuid/issues" | ||
}, | ||
"homepage": "https://github.com/visjs/vis-uuid#README.md", | ||
"files": [ | ||
"dist", | ||
"LICENSE*" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@babel/core": "^7.5.0", | ||
"@babel/preset-env": "^7.5.0", | ||
"@babel/preset-typescript": "^7.3.3", | ||
"@babel/register": "^7.4.4", | ||
"@types/chai": "^4.1.7", | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^12.0.12", | ||
"assert": "^2.0.0", | ||
"chai": "^4.2.0", | ||
"mocha": "^6.1.4", | ||
"rimraf": "^2.6.3", | ||
"rollup": "^1.16.6", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"typedoc": "^0.14.2", | ||
"typescript": "^3.5.2" | ||
} | ||
"name": "vis-uuid", | ||
"version": "1.1.3", | ||
"description": "UUIDv1 and UUIDv4 generator.", | ||
"main": "dist/umd.js", | ||
"module": "dist/esm.js", | ||
"types": "dist/types/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/visjs/vis-uuid.git" | ||
}, | ||
"author": "Alex de Mulder <alexdemulder@gmail.com>", | ||
"contributors": [ | ||
"Alexander Wunschik <alex@wunschik.net>", | ||
"Tomáš Vyčítal <tom.vycital@gmail.com>", | ||
"Alex de Mulder <alexdemulder@gmail.com>", | ||
"jos <wjosdejong@gmail.com>" | ||
], | ||
"scripts": { | ||
"build": "npm run build:types && npm run build:code && npm run build:docs", | ||
"build:code": "rollup -c rollup.config.js", | ||
"build:docs": "typedoc ./src", | ||
"build:types": "tsc -p tsconfig.types.json", | ||
"clean": "rimraf '{docs,dist}/*'", | ||
"lint": "eslint '{src,test}/**/*.{m,}{j,t}s{x,}'", | ||
"lint:fix": "npm run lint -- --fix", | ||
"prepublishOnly": "npm run test && npm run type-check && npm run lint", | ||
"preversion": "npm run test && npm run type-check && npm run lint", | ||
"test": "BABEL_ENV=test mocha", | ||
"test-cov": "BABEL_ENV=test-cov nyc mocha", | ||
"type-check": "tsc --noemit", | ||
"version": "npm run build:docs && git add docs && npm run contributors:update && git add package.json", | ||
"contributors:update": "git-authors-cli", | ||
"preparepublish": "npm run contributors:update" | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"keywords": [ | ||
"uuid", | ||
"vis", | ||
"vis.js" | ||
], | ||
"license": "(Apache-2.0 OR MIT)", | ||
"bugs": { | ||
"url": "https://github.com/visjs/vis-uuid/issues" | ||
}, | ||
"homepage": "https://github.com/visjs/vis-uuid#README.md", | ||
"files": [ | ||
"dist", | ||
"LICENSE*" | ||
], | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@babel/core": "^7.5.0", | ||
"@babel/plugin-proposal-class-properties": "^7.5.5", | ||
"@babel/plugin-transform-runtime": "^7.5.5", | ||
"@babel/preset-env": "^7.5.0", | ||
"@babel/preset-typescript": "^7.3.3", | ||
"@babel/register": "^7.4.4", | ||
"@babel/runtime": "^7.5.5", | ||
"@types/chai": "^4.1.7", | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^12.0.12", | ||
"@typescript-eslint/eslint-plugin": "^1.11.0", | ||
"@typescript-eslint/parser": "^1.11.0", | ||
"assert": "^2.0.0", | ||
"babel-plugin-istanbul": "^5.2.0", | ||
"chai": "^4.2.0", | ||
"eslint": "^6.0.1", | ||
"eslint-config-prettier": "^6.0.0", | ||
"eslint-plugin-prettier": "^3.1.0", | ||
"git-authors-cli": "^1.0.18", | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.1.1", | ||
"prettier": "^1.18.2", | ||
"rimraf": "^2.6.3", | ||
"rollup": "^1.16.6", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-node-resolve": "^5.2.0", | ||
"typedoc": "^0.14.2", | ||
"typescript": "^3.5.2" | ||
} | ||
} |
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
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
38120
0
28