-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "@tepez/joi-jasmine-helpers",
"version": "1.1.0",
"description": "Custom matchers for writing unit test in Jasmine for hapijs/joi schemas and extensions",
"homepage": "https://github.com/tepez/joi-jasmine-helpers#readme",
"bugs": {
"url": "https://github.com/tepez/joi-jasmine-helpers/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tepez/joi-jasmine-helpers.git"
},
"license": "MIT",
"author": "Tom Yam <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli dist",
"dev": "nodemon --watch \"src/**\" --ext ts --exec \"node -r ts-node/register/transpile-only node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/dev.js\"",
"dev-debug": "nodemon --watch \"src/**\" --ext ts --exec \"node -r ts-node/register/transpile-only --inspect node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/dev.js\"",
"test": "node -r ts-node/register/transpile-only node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/build.js",
"test-debug": "node -r ts-node/register/transpile-only --inspect-brk node_modules/jasmine/bin/jasmine.js --config=node_modules/@tepez/typescript-build-gulp-tasks/dist/jasmine/build.js",
"update": "npm run build && npx np --no-publish"
},
"dependencies": {
"@types/lodash.isregexp": "^4.0.9",
"lodash.isregexp": "^4.0.1"
},
"devDependencies": {
"@tepez/jasmine-misc-matchers": "^1.4.0",
"@tepez/typescript-build-gulp-tasks": "^8.0.0",
"@tepez/typescript-common": "^2.0.0",
"@types/jasmine": "^5.1.4",
"joi": "^17.13.3",
"np": "^10.0.7"
}
}