-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.15 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
{
"name": "@propero/react-replace-component",
"version": "0.0.0",
"description": "Replace react components dynamically at a later time",
"since": "2021",
"main": "dist/main.cjs.js",
"module": "dist/main.esm.js",
"unpkg": "dist/main.umd.js",
"types": "dist/main.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 --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts . --fix"
},
"keywords": [
"propero",
"typescript",
"react",
"replace",
"component"
],
"author": "Propero Team <team@propero.dev>",
"license": "MIT",
"devDependencies": {
"@propero/easy-store": "*",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"@types/react": "*",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.1",
"jest-preset-typescript": "^1.2.0",
"lodash": "^4.17.21",
"prettier": "^2.3.0",
"react": "*",
"react-test-renderer": "^17.0.2",
"rollup": "^2.50.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts-paths": "^1.0.5",
"semantic-release": "^17.4.3",
"ts-jest": "^27.0.0",
"typescript": "^4.2.4"
},
"peerDependencies": {
"@propero/easy-store": "*",
"react": "*"
},
"publishConfig": {
"access": "public"
}
}