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

message-accumulator

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

message-accumulator - npm Package Compare versions

Comparing version 2.2.3 to 3.0.0

docs/ilibMessageAccumulator.md

73

package.json
{
"name": "message-accumulator",
"version": "2.2.3",
"main": "./message-accumulator-es5.js",
"main-es6": "./message-accumulator.js",
"version": "3.0.0",
"main": "./lib/message-accumulator.js",
"module": "./src/message-accumulator.js",
"exports": {
".": {
"import": "./src/message-accumulator.js",
"require": "./lib/message-accumulator.js"
}
},
"description": "A package to accumulate localizable snippets of HTML or JSX text and to compose and decompose them to/from localizable strings",

@@ -37,5 +43,5 @@ "keywords": [

"files": [
"message-accumulator.js",
"message-accumulator-es5.js",
"message-accumulator-es5.js.map",
"src",
"lib",
"docs",
"README.md",

@@ -50,25 +56,46 @@ "LICENSE"

"build": "grunt babel",
"dist": "npm run build ; npm pack",
"test": "npm run build ; node test/testSuite.js",
"debug": "npm run build ; node --inspect-brk test/testSuite.js",
"clean": "git clean -f -d * ; rm -rf lib"
"dist": "npm-run-all build doc ; npm pack",
"test": "npm-run-all build test:cli",
"test:cli": "LANG=en_US.UTF8 node --experimental-vm-modules node_modules/.bin/jest --testEnvironment node",
"test:watch": "LANG=en_US.UTF8 node --experimental-vm-modules node_modules/.bin/jest --testEnvironment node --watch",
"debug": "npm run build ; node --experimental-vm-modules --inspect-brk node_modules/.bin/jest --testEnvironment node -i",
"clean": "git clean -f -d * ; rm -rf lib",
"doc": "mkdir -p docs ; jsdoc2md -c jsdoc.json --separators --source src/* -m table > docs/ilibMessageAccumulator.md",
"doc:html": "jsdoc -c jsdoc.json",
"prepare": "conditional-install"
},
"dependencies": {
"ilib-tree-node": "^1.3.2"
"ilib-tree-node": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/register": "^7.23.7",
"@babel/runtime": "^7.23.9",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^5.0.0",
"conditional-install": "^1.0.1",
"docdash": "^2.0.2",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-contrib-uglify": "^4.0.1",
"load-grunt-tasks": "^5.0.0",
"nodeunit": "0.11.0"
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"load-grunt-tasks": "^5.1.0",
"npm-run-all": "^4.1.5",
"semver": "^7.5.4"
},
"conditionalDependencies": {
"process.versions.node < v14.0.0": {
"jest": "^26.0.0",
"babel-loader": "^8.0.0"
},
"process.versions.node >= v14.0.0": {
"jest": "^29.7.0",
"babel-loader": "^9.0.0"
}
}
}

@@ -205,1 +205,25 @@ # message-accumulator

## License
Copyright © 2018-2024, JEDLSoft
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
# Release Notes
## v3.0.0
- convert all unit tests from nodeunit to jest
- export the es6 code as real es6 modules and old transpiled javascript
for older packages to use (breaking change)
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