config redirect

This commit is contained in:
Nuno Coração
2023-01-29 22:30:24 +00:00
parent 17557c7d73
commit 5fb4bd8083
9905 changed files with 1258996 additions and 36355 deletions

50
node_modules/ulid/package.json generated vendored Normal file
View File

@@ -0,0 +1,50 @@
{
"name": "ulid",
"version": "2.3.0",
"description": "A universally-unique, lexicographically-sortable, identifier generator",
"main": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"esnext": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ulid/javascript.git"
},
"author": "Alizain Feerasta",
"license": "MIT",
"bugs": {
"url": "https://github.com/ulid/javascript/issues"
},
"homepage": "https://github.com/ulid/javascript#readme",
"devDependencies": {
"@types/node": "^8.0.47",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"istanbul": "^0.4.4",
"lolex": "^2.1.3",
"matcha": "^0.7.0",
"mocha": "^2.5.3",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-typescript": "^0.8.1",
"typedoc": "^0.9.0",
"typescript": "^2.5.3"
},
"scripts": {
"ts": "./node_modules/.bin/tsc -p .",
"rollup": "./node_modules/.bin/rollup -c",
"build": "npm run ts && npm run rollup",
"test": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"perf": "./node_modules/.bin/matcha perf.js"
},
"files": [
"bin",
"dist",
"stubs"
],
"bin": "./bin/cli.js",
"browser": {
"crypto": "./stubs/crypto.js"
}
}