-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "@everflow/everflow-sdk",
"version": "1.5.0",
"description": "Everflow's javascript SDK",
"main": "dist/bundle.js",
"scripts": {
"vanilla": "rollup -c rollup.vanilla.config.js",
"umd": "rollup -c rollup.npm.config.js",
"build": "npm run vanilla && npm run umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/everflow-io/everflow-sdk.git"
},
"author": "olivier@everflow.io",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/everflow-io/everflow-sdk/issues"
},
"homepage": "https://github.com/everflow-io/everflow-sdk#readme",
"dependencies": {
"promise-polyfill": "8.2.0",
"url-polyfill": "^1.1.12",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"babelrc-rollup": "3.0.0",
"rollup": "^2.50.3",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "^5.0.2"
}
}