-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.6 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.6 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
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
{
"name": "@rednetio/react-include",
"version": "1.0.0",
"description": "Server Side Include / Edge Side Include components for isomorphic rendering with React.",
"homepage": "https://github.com/rednetio/react-include",
"main": "lib/react-include.js",
"module": "lib/react-include.mjs",
"repository": "rednetio/react-include",
"bugs": "https://github.com/rednetio/react-include/issues",
"author": "Jean Dupouy <jean.dupouy@rednet.io> (https://rednet.io)",
"license": "MIT",
"keywords": [
"react",
"isomorphic",
"ssi",
"server-side-include",
"esi",
"edge-side-include",
"akamai",
"fastly",
"varnish",
"squid",
"nginx",
"apache",
"mongrel",
"lightspeed",
"lighttpd",
"iis"
],
"files": [
"dist/",
"lib/",
"src/",
"contributing.md",
"license.md",
"readme.md"
],
"directories": {
"lib": "lib",
"test": "test"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jsdom": "^11.7.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"prettier": "^1.12.0",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^4.5.0"
},
"peerDependencies": {
"prop-types": ">= 15.5",
"react": ">= 15.5"
},
"dependencies": {
"react-lifecycles-compat": "^3.0.2"
},
"scripts": {
"buidl": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "NODE_ENV=cjs rollup -c -o lib/react-include.js",
"build:es": "NODE_ENV=es rollup -c -o lib/react-include.mjs",
"build:umd": "NODE_ENV=development rollup -c -o dist/react-include.js",
"build:umd:min": "NODE_ENV=production rollup -c -o dist/react-include.min.js",
"coverage": "BABEL_ENV=test nyc mocha --require babel-core/register --require .mocha.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src test",
"test": "BABEL_ENV=test mocha --require babel-core/register --require .mocha.js"
}
}