Projekt

Obecné

Profil

Stáhnout (1.55 KB) Statistiky
| Větev: | Revize:
1
{
2
	"name": "mini-create-react-context",
3
	"version": "0.3.2",
4
	"description": "Smaller Polyfill for the proposed React context API",
5
	"main": "dist/cjs/index.js",
6
	"module": "dist/esm/index.js",
7
	"types": "dist/index.d.ts",
8
	"repository": "https://github.com/StringEpsilon/mini-create-react-context",
9
	"author": "StringEpsilon",
10
	"license": "MIT",
11
	"keywords": [
12
		"react",
13
		"context",
14
		"contextTypes",
15
		"polyfill",
16
		"ponyfill"
17
	],
18
	"files": [
19
		"dist/**"
20
	],
21
	"scripts": {
22
		"test": "jest",
23
		"build": "rollup -c rollup.config.js",
24
		"prepublish": "npm run build"
25
	},
26
	"dependencies": {
27
		"gud": "^1.0.0",
28
		"tiny-warning": "^1.0.2",
29
		"@babel/runtime": "^7.4.0"
30
	},
31
	"peerDependencies": {
32
		"prop-types": "^15.0.0",
33
		"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
34
	},
35
	"devDependencies": {
36
		"@babel/cli": "^7.4.3",
37
		"@babel/core": "^7.4.3",
38
		"@babel/plugin-proposal-class-properties": "^7.4.0",
39
		"@babel/preset-env": "^7.4.3",
40
		"@babel/preset-react": "^7.0.0",
41
		"@babel/preset-typescript": "^7.3.3",
42
		"@types/enzyme": "^3.9.1",
43
		"@types/jest": "^24.0.11",
44
		"@types/react": "^16.8.13",
45
		"@wessberg/rollup-plugin-ts": "^1.1.46",
46
		"babel-jest": "^24.7.1",
47
		"enzyme": "^3.9.0",
48
		"enzyme-adapter-react-16": "^1.11.2",
49
		"enzyme-to-json": "^3.3.5",
50
		"jest": "^24.7.1",
51
		"prop-types": "^15.6.0",
52
		"raf": "^3.4.1",
53
		"react": "^16.2.0",
54
		"react-dom": "^16.2.0",
55
		"rollup": "^1.10.0",
56
		"rollup-plugin-commonjs": "^9.3.4",
57
		"rollup-plugin-node-resolve": "^4.2.3",
58
		"rollup-plugin-uglify": "^6.0.2"
59
	},
60
	"jest": {
61
		"snapshotSerializers": [
62
			"enzyme-to-json/serializer"
63
		]
64
	}
65
}
(3-3/3)