-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.02 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "nirikshak",
"version": "1.0.0",
"description": "Test your REST APIs",
"main": "index.js",
"scripts": {
"test": "jest --projects packages/core packages/cli packages/reporter",
"coverage-badge": "npm run test && jest-coverage-badges output ./badges",
"test:reporter": "jest --projects packages/reporter",
"test:cli": "jest --projects packages/cli",
"test:core": "jest --projects packages/core",
"test:update": "jest -u",
"commit": "git-cz",
"lint:reporter": "eslint \"packages/reporter/src/**/*.ts\" \"packages/reporter/tests/**/*.ts\"",
"format:reporter": "prettier --write \"packages/reporter/{src,tests}/**/*.ts\"",
"lint:cli": "eslint \"packages/cli/src/**/*.ts\" \"packages/cli/tests/**/*.ts\"",
"format:cli": "prettier --write \"packages/cli/{src,tests}/**/*.ts\"",
"lint:core": "eslint \"packages/core/src/**/*.ts\" \"packages/core/tests/**/*.ts\"",
"format:core": "prettier --write \"packages/core/src/**/*.ts\"",
"format": "lerna run format --parallel",
"build": "lerna run build --parallel",
"lint": "lerna run lint --parallel",
"prepare:master": "npm run lint && npm run format && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yashmahalwal/nirikshak.git"
},
"keywords": [
"REST",
"Testing",
"QA",
"API",
"nirikshak"
],
"author": "Yash Mahalwal <yashmahalwal@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yashmahalwal/nirikshak/issues"
},
"homepage": "https://github.com/yashmahalwal/nirikshak#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/faker": "^4.1.12",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-jest": "^25.4.0",
"commitizen": "^4.0.4",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"jest": "^25.4.0",
"jest-coverage-badges": "^1.1.2",
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"typescript": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"babel-plugin-transform-typescript-metadata": "^0.3.1"
}
}