Comparing version 0.0.1 to 0.2.0
{ | ||
"name": "rahome", | ||
"version": "0.0.1", | ||
"description": "Algorithms and data structure for writting efficient software", | ||
"main": "index.js", | ||
"version": "0.2.0", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"start": "tsdx watch", | ||
"build": "tsdx build", | ||
"test": "tsdx test", | ||
"test:ci": "cross-env CI=true tsdx test", | ||
"test:watchAll": "tsdx test --watchAll", | ||
"test:coverage": "tsdx test --coverage", | ||
"coverage:open": "open ./coverage/lcov-report/index.html", | ||
"lint": "tsdx lint", | ||
"prettier": "prettier \"src/**/*.+(js|jsx|ts|tsx|json|css|scss|md|html|yaml)\"", | ||
"format": "npm run prettier -- --write", | ||
"prepare": "tsdx build" | ||
}, | ||
"keywords": [ | ||
"algorithms", | ||
"data structure", | ||
"linked list" | ||
], | ||
"peerDependencies": {}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "npm run format && npm run lint && npm run test:ci" | ||
} | ||
}, | ||
"prettier": { | ||
"printWidth": 80, | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"arrowParens": "always", | ||
"tabWidth": 2 | ||
}, | ||
"name": "rahome", | ||
"author": "sagar", | ||
"license": "MIT" | ||
"module": "dist/rahome.esm.js", | ||
"devDependencies": { | ||
"@types/jest": "^25.1.4", | ||
"@types/lodash": "^4.14.149", | ||
"cross-env": "^7.0.2", | ||
"eslint-plugin-import": "^2.20.1", | ||
"eslint-plugin-lodash": "^6.0.0", | ||
"eslint-plugin-sonarjs": "^0.5.0", | ||
"husky": "^4.2.3", | ||
"tsdx": "^0.12.3", | ||
"tslib": "^1.11.1", | ||
"typescript": "^3.8.3" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.17.15", | ||
"lodash-es": "^4.17.15" | ||
} | ||
} |
@@ -1,1 +0,10 @@ | ||
work in progress | ||
# data structure | ||
1. Linked List | ||
2. Stack | ||
3. Queue | ||
4. Hash Table | ||
5. Heaps | ||
6. Trie | ||
7. Tree | ||
8. Graph |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
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
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
Empty package
Supply chain riskPackage does not contain any code. It may be removed, is name squatting, or the result of a faulty package publish.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
37983
16
445
11
2
10
2
+ Addedlodash@^4.17.15
+ Addedlodash-es@^4.17.15
+ Addedlodash@4.17.21(transitive)
+ Addedlodash-es@4.17.21(transitive)