-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.31 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
{
"name": "@propero/easy-store-react",
"version": "0.0.0",
"description": "React bindings for easy-store",
"since": "2021",
"main": "dist/easy-store-react.cjs.js",
"module": "dist/easy-store-react.esm.js",
"unpkg": "dist/easy-store-react.umd.js",
"types": "dist/easy-store-react.esm.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"build:watch": "rollup -cw rollup.config.js",
"clean": "rimraf dist docs coverage",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts . --fix"
},
"keywords": [
"propero",
"easy",
"store",
"reactive",
"functional",
"typescript",
"react"
],
"author": "Propero Team <team@propero.dev>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-preset-typescript": "^1.2.0",
"lodash": "^4.17.20",
"prettier": "^2.2.1",
"rollup": "^2.38.5",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts-paths": "^1.0.5",
"semantic-release": "^17.3.8",
"ts-jest": "^26.5.1",
"typescript": "^4.1.4",
"@propero/easy-store": "^1",
"react": "*",
"@types/react": "*"
},
"peerDependencies": {
"@propero/easy-store": "^1",
"react": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/propero-oss/easy-store-react.git"
},
"bugs": {
"url": "https://github.com/propero-oss/easy-store-react/issues"
},
"homepage": "https://github.com/propero-oss/easy-store-react#readme",
"publishConfig": {
"access": "public"
}
}