mirror of https://github.com/n2geoff/testit.git
38 lines
843 B
JSON
38 lines
843 B
JSON
{
|
|
"name": "testit",
|
|
"version": "0.9.0",
|
|
"description": "minimalistic testing library",
|
|
"main": "src/testit.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"build": "npx gulp default",
|
|
"lint": "npx eslint src/testit.js",
|
|
"test": "npm run build && npm run lint && node test/run.js"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^7.8.1",
|
|
"gulp": "^4.0.2",
|
|
"gulp-minify": "^3.1.0",
|
|
"gulp-rollup-2": "^1.1.0",
|
|
"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"
|
|
}
|