forked from mjoslyn/react-prismic-hocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.14 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-prismic-hocs",
"version": "0.2.5",
"description": "A higher order compnent library for querying prismic.io",
"files": [
"*.md",
"docs",
"es",
"lib",
"umd"
],
"main": "lib/index",
"jsnext:main": "es/index",
"repository": {
"type": "git",
"url": "https://github.com/mjoslyn/react-prismic-hocs.git"
},
"keywords": [
"react",
"reactjs",
"prismic"
],
"author": "Mike Joslyn<[email protected]> (http://github.com/mjoslyn)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjoslyn/react-prismic-hocs/issues"
},
"homepage": "https://github.com/mjoslyn/react-prismic-hocs",
"scripts": {
"build": "npm run build-cjs && npm run build-es",
"build-cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel ./modules -d lib --ignore test",
"build-es": "rimraf es && cross-env BABEL_ENV=es babel ./modules -d es --ignore test",
"build-umd": "cross-env NODE_ENV=development webpack modules/index.js umd/ReactPrismicHocs.js",
"build-min": "cross-env NODE_ENV=production webpack -p modules/index.js umd/ReactPrismicHocs.min.js",
"lint": "eslint examples modules scripts tools *.js",
"test": "jest",
"test:update-snapshots": "jest --updateSnapshot"
},
"dependencies": {
"invariant": "^2.2.2",
"prismic-javascript": "^1.5.0-beta.3"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "7.2.3",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-istanbul": "^1.0.3",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.13.0",
"babel-register": "^6.11.6",
"bundle-loader": "^0.5.4",
"codecov": "^1.0.1",
"cross-env": "^2.0.0",
"css-loader": "^0.23.1",
"eslint": "3.19.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "7.0.1",
"expect": "^1.20.2",
"express": "^4.14.0",
"express-urlrewrite": "^1.2.0",
"flow-bin": "^0.38.0",
"gzip-size": "^3.0.0",
"jest": "^22.4.3",
"json-loader": "^0.5.4",
"karma": "^1.1.2",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"npm": "^4.1.1",
"pretty-bytes": "^3.0.1",
"promise": "^7.1.1",
"qs": "^6.2.1",
"react": "^15.3.0",
"react-addons-css-transition-group": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"xmlhttprequest": "^1.8.0"
},
"browserify": {
"transform": [
"loose-envify"
]
},
"tags": [
"react",
"prismic"
]
}