testit/package.json

37 lines
801 B
JSON
Raw Normal View History

{
"name": "testit",
2018-11-09 16:18:46 +00:00
"version": "0.7.1",
"description": "a minimalistic testing library",
"main": "src/testit.js",
"directories": {
"test": "test"
},
"devDependencies": {
2018-11-09 15:40:40 +00:00
"gulp": "^4.0.0",
"gulp-minify": "^3.1.0",
2018-04-07 08:03:46 +00:00
"gulp-strip-comments": "^2.5.2",
2018-11-09 15:40:40 +00:00
"jshint": "^2.9.6"
},
"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"
}