forked from turbot/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.12 KB
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
{
"name": "@turbot/sdk",
"author": "Turbot HQ, Inc",
"description": "Turbot SDK",
"version": "5.16.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/turbot/sdk.git"
},
"scripts": {
"coverage": "npx nyc npm test",
"test": "npx mocha"
},
"dependencies": {
"@turbot/errors": "5.3.0",
"@turbot/utils": "5.6.0",
"async": "^3.2.5",
"lodash": "^4.17.21",
"uuid": "8.3.2"
},
"devDependencies": {
"chai": "4.3.10",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.13.0",
"prettier": "2.3.1"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended",
"eslint:recommended",
"plugin:you-dont-need-lodash-underscore/compatible"
],
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 10
},
"rules": {
"no-console": "off",
"you-dont-need-lodash-underscore/is-nil": "off"
}
},
"prettier": {
"printWidth": 120
}
}