-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "@cesarbr/knot-cloud-sdk-js-authenticator",
"version": "2.2.0",
"description": "KNoT Cloud Authenticator library for NodeJS and browser",
"main": "./dist/main.js",
"module": "./dist/module.mjs",
"browser": "./dist/browser.js",
"scripts": {
"lint": "eslint .",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-sdk-js-authenticator.git"
},
"engines": {
"node": ">=6"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <=11",
"not op_mini all"
],
"author": "KNoT",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.3",
"pre-commit": "^1.2.2",
"rollup": "^1.13.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.1"
},
"pre-commit": [
"lint"
],
"dependencies": {
"axios": "^0.21.1"
}
}