This repository was archived by the owner on Nov 23, 2021. It is now read-only.
forked from jamiebuilds/create-react-context
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
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
{
"name": "mini-create-react-context",
"version": "0.4.1",
"description": "Smaller Polyfill for the proposed React context API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/StringEpsilon/mini-create-react-context",
"author": "StringEpsilon",
"license": "MIT",
"keywords": [
"react",
"context",
"contextTypes",
"polyfill",
"ponyfill"
],
"files": [
"dist/**"
],
"scripts": {
"test": "jest",
"build": "rollup -c rollup.config.js",
"prepublish": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"tiny-warning": "^1.0.3"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.22",
"@types/react": "^16.14.5",
"@wessberg/rollup-plugin-ts": "^1.3.11",
"babel-jest": "^26.6.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"jest": "^26.6.3",
"prop-types": "^15.6.0",
"raf": "^3.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.44.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.3"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}