bytestreamjs
Advanced tools
Comparing version 1.0.29 to 1.1.0
@@ -6,3 +6,3 @@ { | ||
}, | ||
"description": "ByteStream is a library making possibe to manipulates single bytes and bits on pure JavaScript", | ||
"description": "ByteStream is a library making possible to manipulates single bytes and bits on pure JavaScript", | ||
"contributors": [ | ||
@@ -14,2 +14,7 @@ { | ||
], | ||
"files": [ | ||
"build", | ||
"README.md", | ||
"LICENSE" | ||
], | ||
"repository": { | ||
@@ -20,9 +25,13 @@ "type": "git", | ||
"devDependencies": { | ||
"babel-cli": "latest", | ||
"babel-plugin-istanbul": "^4.1.5", | ||
"babel-preset-env": "latest", | ||
"cross-env": "^5.1.4", | ||
"eslint": "^4.19.1", | ||
"mocha": "^3.0.2", | ||
"nyc": "^11.6.0" | ||
"@types/mocha": "^8.2.0", | ||
"@types/node": "^14.14.27", | ||
"@typescript-eslint/eslint-plugin": "^4.15.1", | ||
"@typescript-eslint/parser": "^4.15.1", | ||
"coveralls": "^3.1.0", | ||
"eslint": "^7.20.0", | ||
"mocha": "^8.3.0", | ||
"nyc": "^15.1.0", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.1.5" | ||
}, | ||
@@ -33,6 +42,14 @@ "engines": { | ||
"scripts": { | ||
"build": "babel src --compact=false --out-dir build --source-maps", | ||
"watch": "babel src --compact=false --out-dir build --source-maps --watch", | ||
"test": "cross-env NODE_ENV=test nyc mocha --require babel-register", | ||
"prepublishOnly": "npm run build" | ||
"test": "mocha", | ||
"clear": "rimraf build", | ||
"build": "npm run build:cjs && npm run build:mjs && npm run build:types", | ||
"build:cjs": "tsc -p tsconfig.json --module commonjs --removeComments --outDir build/cjs", | ||
"build:mjs": "tsc -p tsconfig.json --module es2015 --removeComments --outDir build/mjs", | ||
"prebuild:types": "rimraf build/types", | ||
"build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly", | ||
"rebuild": "npm run clear && npm run build", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint --fix .", | ||
"coverage": "nyc npm test", | ||
"coveralls": "nyc report --reporter=text-lcov | coveralls" | ||
}, | ||
@@ -48,7 +65,34 @@ "keywords": [ | ||
"name": "bytestreamjs", | ||
"version": "1.0.29", | ||
"jsnext:main": "./src/bytestream.js", | ||
"module": "./src/bytestream.js", | ||
"main": "./build/bytestream.js", | ||
"license": "BSD-3-Clause" | ||
"version": "1.1.0", | ||
"module": "./build/mjs/index.js", | ||
"main": "./build/cjs/index.js", | ||
"license": "BSD-3-Clause", | ||
"nyc": { | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
], | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"**/*.d.ts" | ||
], | ||
"reporter": [ | ||
"lcov", | ||
"text-summary", | ||
"html" | ||
] | ||
}, | ||
"mocha": { | ||
"require": [ | ||
"ts-node/register" | ||
], | ||
"extension": [ | ||
"ts" | ||
], | ||
"spec": [ | ||
"test/**" | ||
] | ||
} | ||
} |
# ByteStream.js | ||
[](https://github.com/PeculiarVentures/ByteStream.js/blob/master/LICENSE) [](https://circleci.com/gh/PeculiarVentures/ByteStream.js) [](https://snyk.io/test/github/PeculiarVentures/ByteStream.js) [](https://coveralls.io/github/PeculiarVentures/ByteStream.js?branch=master) | ||
[](https://github.com/PeculiarVentures/ByteStream.js/blob/master/LICENSE) [](https://circleci.com/gh/PeculiarVentures/ByteStream.js) [](https://snyk.io/test/github/PeculiarVentures/ByteStream.js) [](https://coveralls.io/github/PeculiarVentures/ByteStream.js?branch=master) | ||
@@ -5,0 +5,0 @@ ## ByteStream class |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
24
186824
11
4778
2