testit/package.json

37 lines
802 B
JSON
Raw Normal View History

{
"name": "testit",
2020-09-08 17:09:13 +00:00
"version": "0.8.2",
"description": "a minimalistic testing library",
"main": "src/testit.js",
"directories": {
"test": "test"
},
"devDependencies": {
2019-08-14 18:08:24 +00:00
"gulp": "^4.0.2",
2018-11-09 15:40:40 +00:00
"gulp-minify": "^3.1.0",
2018-04-07 08:03:46 +00:00
"gulp-strip-comments": "^2.5.2",
2020-05-27 21:34:09 +00:00
"jshint": "^2.11.1"
},
"scripts": {
2018-04-07 08:03:46 +00:00
"build": "node_modules/.bin/gulp",
2018-06-06 12:05:15 +00:00
"lint": "node_modules/.bin/jshint src/testit.js",
"test": "node test/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n2geoff/testit.git"
},
"keywords": [
"test",
"testing",
"library",
"minimalist"
],
"author": "Geoff Doty",
"license": "MIT",
"bugs": {
"url": "https://github.com/n2geoff/testit/issues"
},
"homepage": "https://github.com/n2geoff/testit#readme"
}