-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "@testplane/oauth",
"version": "1.0.0",
"description": "Plugin for convenient setting of authorization header with OAuth token",
"main": "build/index.js",
"files": [
"build",
"README.md"
],
"scripts": {
"build": "tsc --build",
"clean": "rimraf build/ *.tsbuildinfo",
"eslint": "eslint src --config '.eslintrc.js' --ignore-path '.eslintignore'",
"lint": "npm run eslint && npm run style",
"prepack": "npm run clean && npm run build",
"prettier": "prettier 'src/**/*.ts' '**/*.json' --ignore-path '.prettierignore'",
"reformat": "npm run eslint -- --fix && npm run prettier -- --write",
"style": "npm run prettier -- --check",
"unit": "jest --config 'jest.config.js' --passWithNoTests",
"test": "npm run unit && npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/testplane-oauth.git"
},
"engines": {
"node": ">= 12.0.0"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"oauth"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-oauth/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-oauth#readme",
"devDependencies": {
"@types/jest": "28.1.3",
"@types/node": "12.20.55",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"eslint": "8.18.0",
"eslint-config-gemini-testing": "3.0.0",
"jest": "28.1.1",
"jest-extended": "2.0.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"testplane": "0.1.0-rc.0",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
},
"dependencies": {
"gemini-configparser": "1.3.0"
}
}