Socket
Socket
Sign inDemoInstall

gifken

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 2.0.0

lib/browser.d.ts

16

CHANGELOG.md

@@ -1,3 +0,17 @@

# Change Log
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [2.0.0](https://github.com/aaharu/gifken/compare/v1.0.1...v2.0.0) (2019-10-14)
### Bug Fixes
* fix README ([812cf8a](https://github.com/aaharu/gifken/commit/812cf8a656d9a42ed6f8c4ac733736367957b108))
* output `d.ts` files ([39e4a1c](https://github.com/aaharu/gifken/commit/39e4a1c767e2962a6e371ce07908164ea5c75aa5))
### Changed
* REBUILD
## [1.0.1] - 2019-06-05

@@ -4,0 +18,0 @@

122

package.json
{
"name": "gifken",
"version": "1.0.1",
"version": "2.0.0",
"description": "TypeScript / JavaScript GIF parser and maker",
"main": "lib/gifken.js",
"types": "lib/gifken.d.ts",
"main": "lib/gifken.cjs.js",
"module": "lib/gifken.esm.js",
"browser": "lib/gifken.umd.js",
"types": "lib/index.d.ts",
"homepage": "https://aaharu.github.io/gifken/",
"scripts": {
"build": "tsc && browserify lib/gifken.js -t [ babelify --presets [ @babel/preset-env ] ] --outfile gifken.js --require ./lib/gifken.js:gifken",
"test": "rimraf coverage && jest",
"clean": "rimraf lib coverage docs gifken.js",
"lint": "eslint --ext .ts . --ignore-path .eslintignore",
"lint:fix": "eslint --fix --ext .ts . --ignore-path .eslintignore",
"doc": "typedoc --target es2015 --module commonjs --out docs --readme README.md src && node d.js"
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"pretest": "rimraf coverage",
"clean": "rimraf lib coverage docs",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"doc": "typedoc --target es2015 --module commonjs --out docs --readme README.md src && node d.js",
"release": "standard-version"
},

@@ -29,26 +34,28 @@ "repository": {

"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@types/jest": "^24.0.13",
"@types/node": ">=10.3.3",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"codecov": "^3.5.0",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"codecov": "^3.6.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jsdoc": "^3.6.2",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typedoc": "^0.14.2",
"typescript": "^3.5.1"
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rimraf": "^2.7.1 || ^3.0.0",
"rollup": "^1.23.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.24.3",
"standard-version": "^7.0.0",
"ts-jest": "^24.1.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
},
"files": [
"lib",
"gifken.js"
"lib"
],

@@ -59,57 +66,6 @@ "keywords": [

],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": {
"typeRoots": [
"node_modules/@types"
]
}
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/test/**/*.ts?(x)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts?(x)"
]
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"mocha": true,
"browser": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"no-unused-vars": "off",
"no-constant-condition": "off",
"@typescript-eslint/adjacent-overload-signatures": "error"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}

@@ -116,0 +72,0 @@ },

@@ -13,4 +13,2 @@ # gifken

<script type="application/javascript">
const gifken = require("gifken");
window.onload = () => {

@@ -119,15 +117,2 @@ var newgif = new gifken.Gif();

## Directories
```
gifken
├── build build results
├── node_modules
├── sample sample software using gifken
│   ├── chromeextension
│ └── node
├── src source directory
└── test
```
## Build

@@ -147,2 +132,6 @@

## Similar Projects
* [omggif](https://github.com/deanm/omggif)
## License

@@ -149,0 +138,0 @@

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc