testit/package.json

38 lines
843 B
JSON
Raw Normal View History

{
"name": "testit",
2020-09-08 22:29:56 +00:00
"version": "0.9.0",
"description": "minimalistic testing library",
"main": "src/testit.js",
"directories": {
"test": "test"
},
"scripts": {
2020-09-08 22:37:24 +00:00
"build": "npx gulp default",
"lint": "npx eslint src/testit.js",
"test": "npm run build && npm run lint && node test/run.js"
},
2020-09-08 22:27:17 +00:00
"devDependencies": {
"eslint": "^7.8.1",
"gulp": "^4.0.2",
"gulp-minify": "^3.1.0",
2020-09-08 22:29:56 +00:00
"gulp-rollup-2": "^1.1.0",
2020-09-08 22:27:17 +00:00
"gulp-strip-comments": "^2.5.2"
},
"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"
}