-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.57 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
{
"name": "@redsift/sift-sdk-web",
"version": "2.0.3",
"description": "SDK for developing web-based Sifts.",
"module": "dist/sift-sdk-web.esm.js",
"main": "dist/sift-sdk-web.umd.js",
"browser": "dist/sift-sdk-web.umd.js",
"files": [
"dist",
"react.js"
],
"scripts": {
"build": "npm run clean && rollup --config",
"clean": "rm -rf ./dist",
"prepare": "npm run build",
"pretest": "npm outdated || true",
"test": "echo \"no test specified\" && exit 0"
},
"keywords": [
"redsift",
"sift",
"frontend"
],
"author": "Martin Hecher <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.16.3",
"npm": ">=6.13.4"
},
"dependencies": {
"@redsift/observable": "^4.0.5",
"@redsift/rs-storage": "^4.0.5",
"js-sha256": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.0.0",
"eslint-plugin-react": "^7.20.0",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^2.0.5",
"rollup": "^2.10.9"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,css,md}": "prettier --write"
}
}