Comparing version 1.0.0 to 1.0.1
@@ -25,1 +25,2 @@ "use strict"; | ||
exports.AbstractTokenizer = AbstractTokenizer; | ||
//# sourceMappingURL=AbstractTokenizer.js.map |
@@ -51,1 +51,2 @@ "use strict"; | ||
exports.FileTokenizer = FileTokenizer; | ||
//# sourceMappingURL=FileTokenizer.js.map |
@@ -58,1 +58,2 @@ "use strict"; | ||
exports.fromFile = fromFile; | ||
//# sourceMappingURL=index.js.map |
@@ -41,1 +41,2 @@ "use strict"; | ||
exports.ReadStreamTokenizer = ReadStreamTokenizer; | ||
//# sourceMappingURL=ReadStreamTokenizer.js.map |
{ | ||
"name": "strtok3", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A promise based streaming tokenizer", | ||
@@ -10,9 +10,8 @@ "author": { | ||
"scripts": { | ||
"compile": "gulp compile && gulp test-compile", | ||
"clean": "gulp clean", | ||
"mocha": "mocha --require ts-node/register test", | ||
"prepare": "gulp", | ||
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'", | ||
"test": "gulp test", | ||
"coveralls": "nyc npm run mocha && nyc report --reporter=text-lcov | coveralls" | ||
"compile": "tsc", | ||
"prepare": "npm run compile", | ||
"lint": "tslint 'lib/**/*.ts' --exclude 'lib/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'", | ||
"test": "mocha --require ts-node/register test", | ||
"cover-test": "nyc npm run test", | ||
"coveralls": "npm run cover-test && nyc report --reporter=text-lcov | coveralls" | ||
}, | ||
@@ -41,7 +40,3 @@ "engines": { | ||
"debug": "^2.6.8", | ||
"gulp": "^3.9.1", | ||
"gulp-clean": "^0.3.2", | ||
"gulp-mocha": "^4.3.1", | ||
"gulp-sourcemaps": "^2.6.0", | ||
"gulp-tsc": "^1.3.2", | ||
"gulp-istanbul": "^1.1.2", | ||
"mocha": "^3.4.2", | ||
@@ -51,4 +46,3 @@ "nyc": "^11.0.3", | ||
"tslint": "^5.5.0", | ||
"typescript": "^2.4.1", | ||
"typings": "^2.1.1" | ||
"typescript": "^2.4.1" | ||
}, | ||
@@ -59,3 +53,3 @@ "dependencies": { | ||
"then-read-stream": "^0.1.0", | ||
"token-types": "^0.1.1" | ||
"token-types": "^0.1.2" | ||
}, | ||
@@ -62,0 +56,0 @@ "keywords": [ |
@@ -8,9 +8,9 @@ { | ||
"declaration": true, | ||
"target": "es5", | ||
"outDir": "lib" | ||
"target": "es5" | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
"lib/**/*.ts", | ||
"test/**/*.ts" | ||
] | ||
} | ||
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
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
14
2
147094
24
4172
Updatedtoken-types@^0.1.2