Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ansi-art/char-subgrid

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ansi-art/char-subgrid - npm Package Compare versions

Comparing version 3.0.0-alpha2 to 3.0.0-alpha3

.babelrc.js

3

.eslintrc.js

@@ -15,3 +15,4 @@ module.exports = {

'parserOptions': {
'ecmaVersion': 'latest'
'ecmaVersion': 'latest',
'sourceType': 'module'
},

@@ -18,0 +19,0 @@ 'rules': {

{
"name": "@ansi-art/char-subgrid",
"version": "3.0.0-alpha2",
"main": "grid.js",
"version": "3.0.0-alpha3",
"main": "grid.cjs",
"module": "grid.mjs",
"description": "ASCII line drawing using subcharacter precision",
"keywords": [
"keywords": [
"ascii",

@@ -12,17 +13,22 @@ "ansi",

"compositing"
],
"author": "Abbey Hawk Sparrow <@khrome> (http://abbeyhawksparrow.com/)",
"contributors": [],
"bugs": {
],
"author": "Abbey Hawk Sparrow <@khrome> (http://abbeyhawksparrow.com/)",
"contributors": [],
"bugs": {
"url": "https://github.com/ansi-art/char-subgrid/issues"
},
"license": "MIT",
"repository": {
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ansi-art/char-subgrid.git"
},
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"chai": "^4.3.6",
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-modules-umd": "^7.22.5",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"babel-plugin-search-and-replace": "^1.1.1",
"chai": "^4.3.7",
"environment-safe-chai": "^0.0.1",
"eslint": "^8.35.0",

@@ -32,3 +38,3 @@ "husky": "^8.0.3",

"jsdoc-to-markdown": "^8.0.0",
"mocha": "^10.0.0",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",

@@ -40,3 +46,3 @@ "tsd-jsdoc": "^2.5.0"

"generate-typescript-root": "cat ./types/types.d.ts > .d.ts",
"generate-docs": "for i in src/*.js; do ./node_modules/.bin/jsdoc2md \"${i}\" > \"docs/$(basename ${i%.js}).md\"; done",
"generate-docs": "for i in src/*.mjs; do echo \"${i}\";./node_modules/.bin/jsdoc2md -c jsdoc.json \"${i}\" > \"docs/$(basename ${i%.mjs}).md\"; done",
"next-patch": "pysemver bump patch $(jq .version package.json| tr -d \\\")",

@@ -48,9 +54,14 @@ "next-minor": "pysemver bump minor $(jq .version package.json| tr -d \\\")",

"increment-major": "npm version major",
"test": "./node_modules/.bin/mocha",
"lint": "./node_modules/.bin/eslint *.js src/*.js test/*.js",
"build": "npm run build-commonjs-root; npm run build-dist",
"build-dist": "./node_modules/.bin/babel src --out-dir dist --out-file-extension .cjs",
"build-commonjs-root": "./node_modules/.bin/babel grid.mjs > grid.cjs",
"test-require": "./node_modules/.bin/mocha test/test.cjs",
"test-import": "./node_modules/.bin/mocha test/test.mjs",
"test": "npm run test-require; npm run test-import",
"lint": "./node_modules/.bin/eslint *.mjs src/*.mjs test/*.mjs",
"add-generated-files-to-commit": "git add docs/*.md; git add types/*.ts; git add .d.ts",
"container-test": "docker build . -t char-subgrid -f ./containers/test.dockerfile; docker logs --follow \"$(docker run -d char-subgrid)\"",
"tag-current-version":"git tag -a $(echo $(cat package.json | jq '(\"v\" + .version)' --unbuffered) | tr -d \"\\\"\") -m \"Release Version\"",
"tag-current-version": "git tag -a $(echo $(cat package.json | jq '(\"v\" + .version)' --unbuffered) | tr -d \"\\\"\") -m \"Release Version\"",
"npm-publish": "npm run tag-current-version; git push --follow-tags; npm publish",
"generate-artifacts" : "npm run generate-types; npm run generate-typescript-root; npm run generate-docs"
"generate-artifacts": "npm run generate-types; npm run generate-typescript-root; npm run generate-docs"
},

@@ -60,2 +71,3 @@ "precommit.colors": true,

"lint",
"build",
"test",

@@ -69,4 +81,4 @@ "container-test",

"dependencies": {
"extend-interface": "0.0.3"
"extend-interface": "^1.0.1"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc