-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.64 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
{
"name": "create-react-context",
"version": "0.2.3",
"description": "Polyfill for the proposed React context API",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "https://github.com/thejameskyle/create-react-context",
"author": "James Kyle <me@thejameskyle.com>",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"react",
"context",
"contextTypes",
"polyfill",
"ponyfill"
],
"files": [
"lib"
],
"scripts": {
"test": "jest",
"flow": "flow",
"format": "prettier --write '**/*.{js,md,json,js.flow,d.ts}'",
"build": "babel src -d lib --copy-files --ignore __tests__",
"prepublish": "yarn build",
"commit": "lint-staged"
},
"dependencies": {
"fbjs": "^0.8.0",
"gud": "^1.0.0"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"flow-bin": "^0.60.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"lint-staged": {
"*.{js,md,json,js.flow,d.ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}