source: node_modules/react-immutable-pure-component/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.9 KB
Line 
1{
2 "name": "react-immutable-pure-component",
3 "version": "2.2.2",
4 "description": "React PureComponent implementation embracing Immutable.js",
5 "main": "lib/react-immutable-pure-component.js",
6 "module": "lib/react-immutable-pure-component.es.js",
7 "types": "types/react-immutable-pure-component.d.ts",
8 "files": [
9 "types",
10 "lib"
11 ],
12 "scripts": {
13 "build": "rollup -c ./rollup.config.js",
14 "test": "jest",
15 "lint": "eslint .",
16 "lint:fix": "eslint --fix .",
17 "testAndBuild": "yarn test; yarn lint; yarn build",
18 "publish-please": "publish-please",
19 "prepublishOnly": "publish-please guard"
20 },
21 "keywords": [
22 "react",
23 "memo",
24 "immutable",
25 "pure",
26 "component",
27 "PureComponent"
28 ],
29 "author": "Piotr Tomasz Monarski",
30 "license": "MIT",
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/Monar/react-immutable-pure-component"
34 },
35 "devDependencies": {
36 "@babel/core": "7.7.0",
37 "@babel/plugin-transform-object-assign": "7.2.0",
38 "@babel/preset-env": "7.7.1",
39 "@babel/preset-react": "7.7.0",
40 "@types/react": "16.9.11",
41 "babel-core": "7.0.0-bridge.0",
42 "babel-eslint": "10.0.3",
43 "babel-jest": "24.9.0",
44 "enzyme": "3.10.0",
45 "enzyme-adapter-react-16": "1.15.1",
46 "eslint": "6.6.0",
47 "eslint-config-monar": "1.0.2",
48 "eslint-config-prettier": "6.5.0",
49 "eslint-plugin-babel": "5.3.0",
50 "eslint-plugin-flowtype": "4.3.0",
51 "eslint-plugin-import": "2.18.2",
52 "eslint-plugin-prettier": "3.1.1",
53 "eslint-plugin-react": "7.16.0",
54 "immutable": "4.0.0-rc.12",
55 "jest": "24.9.0",
56 "prettier": "1.18.2",
57 "publish-please": "5.5.1",
58 "react": "16.11.0",
59 "react-dom": "16.11.0",
60 "react-test-renderer": "16.11.0",
61 "rollup": "1.26.3",
62 "rollup-plugin-babel": "4.3.3",
63 "rollup-plugin-copy": "3.1.0"
64 },
65 "peerDependencies": {
66 "immutable": ">= 2 || >= 4.0.0-rc",
67 "react": ">= 16.6",
68 "react-dom": ">= 16.6"
69 }
70}
Note: See TracBrowser for help on using the repository browser.