@hayspec/spec
Version:
Core logic for Hayspec framework.
69 lines (68 loc) • 1.3 kB
JSON
{
"name": "@hayspec/spec",
"version": "0.10.2",
"description": "Core logic for Hayspec framework.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean; npx tsc",
"test": "npx nyc npx ava --verbose"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"src/tests/*.test.ts",
"src/tests/**/*.test.ts"
]
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"exclude": [
"src/tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hayspec/framework.git"
},
"bugs": {
"url": "https://github.com/hayspec/framework/issues"
},
"homepage": "https://github.com/hayspec/framework#readme",
"keywords": [
"test",
"testing",
"spec",
"specification",
"hay",
"javascript",
"typescript",
"nodejs",
"tdd",
"unit",
"cli"
],
"author": "Kristijan Sedlak (Xpepermint)",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.37",
"ava": "3.15.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"axios": "^0.21.1"
}
}