Comparing version 1.0.0 to 2.0.0
{ | ||
"name": "akismet", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"keywords": [ | ||
@@ -11,3 +11,3 @@ "akismet", | ||
"description": "Akismet API client for node.js", | ||
"author": "Ozgur Ozcitak <oozcitak@gmail.com> (http://ozgur.ozcitak.com)", | ||
"author": "Ozgur Ozcitak <oozcitak@gmail.com>", | ||
"contributors": [], | ||
@@ -22,3 +22,4 @@ "license": "MIT", | ||
}, | ||
"main": "./lib/akismet", | ||
"main": "./lib/index.js", | ||
"types": "./lib/index.d.ts", | ||
"engines": { | ||
@@ -28,13 +29,28 @@ "node": ">=0.8.0" | ||
"dependencies": { | ||
"request": "2.x" | ||
"request": "2.x", | ||
"tsc": "^1.20150623.0" | ||
}, | ||
"devDependencies": { | ||
"coffee-script": ">=1.7.0", | ||
"mocha": ">=1.10.0" | ||
"@types/jest": "*", | ||
"@types/node": "*", | ||
"@types/request": "2.x", | ||
"jest": "^24.7.1", | ||
"ts-jest": "*", | ||
"tslint": "*", | ||
"typescript": "^3.4.5" | ||
}, | ||
"jest": { | ||
"transform": { | ||
"^.+\\.tsx?$": "ts-jest" | ||
}, | ||
"testRegex": "/test/.*\\.tsx?$", | ||
"testEnvironment": "node" | ||
}, | ||
"scripts": { | ||
"prepublish": "coffee -co lib/ src/*.coffee", | ||
"postpublish": "rm -rf lib", | ||
"test": "mocha" | ||
"lint": "tslint -p . -t stylish 'src/**/*.{ts,tsx}'", | ||
"build": "tsc", | ||
"prepublishOnly": "npm run build", | ||
"test": "npm run lint && jest", | ||
"cover": "jest --coverage" | ||
} | ||
} |
@@ -0,0 +0,0 @@ An [Akismet](http://www.akismet.com/) API client for [node.js](http://nodejs.org/). |
Sorry, the diff of this file is not supported yet
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
16005
346
2
7
1
+ Addedtsc@^1.20150623.0
+ Addedtsc@1.20150623.0(transitive)