New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@thi.ng/dcons

Package Overview
Dependencies
Maintainers
1
Versions
319
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thi.ng/dcons - npm Package Compare versions

Comparing version

to
0.1.4

LICENSE

57

package.json
{
"name": "@thi.ng/dcons",
"version": "0.1.3",
"version": "0.1.4",
"description": "Comprehensive doubly linked list structure w/ iterator support",
"main": "index.js",
"main": "./index.js",
"typings": "./index.d.ts",
"repository": "https://github.com/thi-ng/dcons.git",
"author": "Karsten Schmidt <k+npm@thi.ng>",
"license": "Apache-2.0",
"scripts": {
"build": "rm -rf build && tsc --declaration && cp package.json build && cp *.md build",
"test": "tsc -p test && mocha build.test/test/*.js",
"clean": "rm -rf build build.test doc node_modules && yarn install",
"build": "yarn run clean && tsc --declaration",
"test": "yarn run clean && tsc -p test && mocha build/test/*.js",
"clean": "rm -rf *.js *.d.ts build doc",
"pub": "yarn run build && (cd build && yarn publish --access public)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thi-ng/dcons.git"
"devDependencies": {
"@types/mocha": "^2.2.46",
"@types/node": "^9.3.0",
"mocha": "^5.0.0",
"ts-loader": "^3.3.1",
"typedoc": "^0.9.0",
"typescript": "^2.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"@thi.ng/api": "^1.2.1"
},
"keywords": [
"typescript",
"linkedlist",
"datastructure",
"doubly linked",
"ES6",
"iterators",
"stack"
"linkedlist",
"queue",
"stack",
"typescript"
],
"author": "Karsten Schmidt <k+npm@thi.ng>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thi-ng/dcons/issues"
},
"homepage": "https://github.com/thi-ng/dcons",
"devDependencies": {
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"mocha": "^4.1.0",
"typescript": "^2.6.2"
},
"typings": "index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@thi.ng/api": "^1.1.1"
"access": "public"
}
}
}

@@ -24,2 +24,8 @@ # @thi.ng/dcons

## Installation
```
yarn add @thi.ng/dcons
```
## Usage

@@ -92,18 +98,4 @@

## Building
# Authors
```
git clone https://github.com/thi-ng/dcons.git
cd dcons
yarn install
yarn run build
```
### Testing
```
yarn run test
```
# Authors
- Karsten Schmidt

@@ -110,0 +102,0 @@