UNPKG

assert-js

Version:

Javascript simple assertion library with no dependencies.

36 lines (35 loc) 1.05 kB
{ "name": "assert-js", "version": "1.0.0", "description": "Javascript simple assertion library with no dependencies.", "main": "bin/es5/assert-js.js", "scripts": { "test": "node_modules/.bin/madge src/ --circular && node_modules/.bin/mocha --require @babel/register --reporter dot tests/AssertJS --recursive", "build": "npm run test && node_modules/.bin/babel src --out-dir bin/es5 && node_modules/.bin/webpack --config webpack.config.js", "prepublishOnly": "npm run build" }, "repository": { "type": "git", "url": "git@github.com:Tiliqua/assert-js.git" }, "keywords": [ "assertion", "assert", "assert-js", "type hinting", "es6" ], "author": "Norbert Orzechowicz <norbert@orzechowicz.pl>", "license": "MIT", "devDependencies": { "@babel/cli": "^7.7.7", "@babel/core": "^7.7.7", "@babel/preset-env": "^7.7.7", "@babel/register": "^7.7.7", "jsdom": "15.2.1", "madge": "3.6.0", "mocha": "5.2.0", "webpack": "4.41.4", "webpack-cli": "3.3.10" } }