testit/package.json

39 lines
864 B
JSON
Raw Normal View History

{
"name": "testit",
2020-09-20 20:02:45 +00:00
"version": "1.0.0",
2020-09-08 22:29:56 +00:00
"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",
2020-09-20 19:59:30 +00:00
"test": "npx live-server --open=test/ --port=5000"
},
2020-09-08 22:27:17 +00:00
"devDependencies": {
2021-01-01 20:57:07 +00:00
"eslint": "^7.16.0",
2020-09-08 22:27:17 +00:00
"gulp": "^4.0.2",
"gulp-minify": "^3.1.0",
2021-01-01 20:57:07 +00:00
"gulp-rollup-2": "^1.2.1",
2020-09-20 19:59:30 +00:00
"gulp-strip-comments": "^2.5.2",
"live-server": "^1.2.1"
2020-09-08 22:27:17 +00:00
},
"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"
}