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

robot3

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robot3 - npm Package Compare versions

Comparing version 0.3.2 to 0.4.0

84

package.json
{
"name": "robot3",
"version": "0.3.2",
"description": "A function, immutable Finite State Machine library",
"version": "0.4.0",
"description": "A functional, immutable Finite State Machine library",
"main": "dist/machine.js",
"module": "machine.js",
"exports": {
".": {
"require": "./dist/machine.js",
"default": "./machine.js"
}
},
"files": [

@@ -15,8 +20,8 @@ "dist/",

"scripts": {
"minify": "terser machine.js -m --module -o machine.min.js",
"bundlesize": "npm run minify && bundlesize --config bundlesize.json",
"server": "ws -p 1965",
"test": "node-qunit-puppeteer http://localhost:1965/test/test.html 10000",
"build": "rollup -d dist -f cjs machine.js debug.js logging.js",
"preversion": "npm run build"
"minify": "wireit",
"bundlesize": "wireit",
"server": "wireit",
"test": "wireit",
"build:cjs": "wireit",
"build": "wireit"
},

@@ -37,12 +42,57 @@ "repository": {

"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"bundlesize": "^0.18.1",
"local-web-server": "^4.2.1",
"markdown-it": "^13.0.1",
"markdown-it-toc-and-anchor": "^4.2.0",
"node-qunit-puppeteer": "^1.0.13",
"rollup": "^1.21.4",
"terser": "^4.3.1"
"terser": "^5.16.1"
},
"wireit": {
"minify": {
"command": "terser machine.js -m --module -o machine.min.js",
"files": [
"machine.js"
],
"output": [
"machine.min.js"
]
},
"bundlesize": {
"command": "bundlesize --config bundlesize.json",
"dependencies": [
"minify"
]
},
"server": {
"command": "ws -p 1965",
"service": {
"readyWhen": {
"lineMatches": "Listening on"
}
}
},
"test": {
"command": "node-qunit-puppeteer http://localhost:1965/test/test.html 10000",
"dependencies": [
"server"
],
"files": [
"machine.js"
],
"output": []
},
"build:cjs": {
"command": "rollup -d dist -f cjs machine.js debug.js logging.js",
"files": [
"machine.js",
"debug.js",
"logging.js"
],
"output": [
"dist"
]
},
"build": {
"dependencies": [
"build:cjs",
"minify"
]
}
}
}
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