-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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
{
"name": "entrepot-sdk",
"version": "0.0.1-alpha.1",
"description": "Entrepot SDK for Node & the browser 🚀",
"main": "dist/entrepot.cjs.js",
"repository": "https://github.com/entrep0t/javascript-sdk.git",
"author": "Ugo Stephant <[email protected]>",
"license": "MIT",
"jsnext:main": "dist/entrepot.esm.js",
"module": "dist/entrepot.esm.js",
"unpkg": "dist/entrepot.min.js",
"cdn": "dist/entrepot.min.js",
"esnext": "dist/entrepot.esm.js",
"sideEffects": false,
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/eslint-parser": "7.16.5",
"@babel/eslint-plugin": "7.16.5",
"@babel/plugin-external-helpers": "7.16.7",
"@babel/plugin-transform-runtime": "7.16.8",
"@babel/preset-env": "7.16.8",
"@poool/eslint-config": "1.5.0",
"@poool/eslint-plugin": "1.5.0",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.3",
"babel-jest": "27.4.6",
"babel-loader": "8.2.3",
"codecov": "3.8.3",
"eslint": "8.7.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"html-webpack-plugin": "5.5.0",
"jest": "27.4.7",
"rollup": "2.64.0",
"rollup-plugin-terser": "7.0.2",
"sinon": "12.0.1",
"webpack": "5.66.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.3"
},
"optionalDependencies": {
"isomorphic-fetch": "3.0.0"
},
"scripts": {
"clean": "rm -rf ./dist || true",
"prebuild": "yarn clean",
"build": "yarn build:default && yarn build:ie",
"build:default": "./node_modules/.bin/rollup -c",
"build:ie": "BABEL_ENV='ie' ./node_modules/.bin/rollup -c",
"serve": "yarn clean && ./node_modules/.bin/webpack serve --config ./webpack.config.js",
"prepack": "yarn lint && yarn build && yarn test",
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint ."
},
"dependencies": {
"@babel/runtime-corejs3": "7.16.8",
"core-js": "3.20.3",
"js-cookie": "3.0.1",
"query-string": "7.1.0"
}
}