forked from Stewart-Taylor/Node-TestRail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
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
{
"author": "Marcel Jahn <[email protected]>",
"contributors": [
"Stewart Taylor <[email protected]> (http://taylore.net"
],
"name": "@sum.cumo/node-testrail",
"description": "An API wrapper for TestRail",
"version": "2.4.0",
"repository": {
"type": "git",
"url": "https://github.com/sumcumo/Node-TestRail.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"eslint": "eslint --ext .ts,.js './src'",
"lint": "yarn eslint",
"build": "rollup -c"
},
"dependencies": {
"adm-zip": "^0.5.5",
"axios": "^0.21.1",
"form-data": "^4.0.0",
"original-fs": "^1.1.0"
},
"keywords": [
"testrail",
"api",
"wrapper",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"rollup": "^2.53.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-cleaner": "^1.0.0",
"simple-git-hooks": "^2.5.1",
"typescript": "4.3.5"
},
"simple-git-hooks": {
"pre-commit": "yarn lint",
"commit-msg": "npx commitlint -e"
}
}