Tiny, but fully loaded test-runner.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

6 years ago
{
"name": "@klenty/gunner",
"version": "0.10.0",
"description": "Zero magic, fast test-runner and assertion framework. No magic globals.",
"main": "es6/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/klenty/gunner.git"
},
"keywords": [
"klenty",
"gunner",
"test",
"tdd",
"unit testing"
],
"scripts": {
"build": "rm -rf ./es5 && mkdir ./es5 && browserify ./es6/index.js -s Gunner > ./es5/index.js && babel --presets=env --plugins=babel-plugin-transform-object-rest-spread ./es5/index.js -o ./es5/index.js",
"build:closure": "./scripts/closure.sh"
},
"author": "Muthu Kumar <@MKRhere> (https://mkr.pw)",
"license": "MIT",
"bugs": {
"url": "https://github.com/klenty/gunner/issues"
},
"homepage": "https://github.com/klenty/gunner#readme",
"dependencies": {
"@codefeathers/iseq": "^1.2.1",
"@codefeathers/promise.object": "^0.9.5",
"json-stringify-safe": "^5.0.1",
"tap-xunit": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browserify": "^16.2.2",
"eslint": "^5.2.0"
}
6 years ago
}