Comparing version 0.3.2 to 0.4.0
{ | ||
"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" | ||
] | ||
} | ||
} | ||
} |
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
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
2
25564
8
1
0