-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.46 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": "@thaoms/engage-js-httpclient-axios",
"version": "1.1.0",
"description": "Engage JS Http Client Axios",
"keywords": [
"clarabridge",
"engage",
"httpclient",
"axios"
],
"main": "dist/index.js",
"scripts": {
"docs": "jsdoc -r -c jsdoc.json",
"test-run": "babel-node index.js",
"prettier": "prettier --check ./src/**",
"lint": "eslint ./src --ext .js",
"lint-fix": "npm lint --fix",
"build": "rollup --config rollup.config.js",
"upgrade-interactive": "ncu",
"update-packages": "ncu -u",
"release": "npm run build && npm version $TYPE -m '📦 Upgrade package to %s' && npm publish && git push && git push --tags",
"release-major": "TYPE=major npm run release",
"release-minor": "TYPE=minor npm run release",
"release-patch": "TYPE=patch npm run release"
},
"repository": {
"type": "git",
"url": "https://github.com/thaoms/engage-js-httpclient-axios.git"
},
"bugs": {
"url": "https://github.com/thaoms/engage-js-httpclient-axios/issues"
},
"author": "Thomas Van Kerckvoorde <thomas.vankerckvoorde@clarabridge.com>",
"license": "BSD-2-Clause",
"dependencies": {
"axios": "^0.19.0",
"jsdoc": "^3.6.3",
"minami": "^1.2.3"
},
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/node": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.2",
"babel-eslint": "^10.0.3",
"core-js": "3",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"npm-check-updates": "^3.1.23",
"prettier": "1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-babel": "^4.3.3"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": "3"
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"useTabs": false,
"semi": true,
"bracketSpacing": true,
"arrowParens": "always"
}
}