-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "react-ssr-optimization",
"version": "0.0.7",
"description": "React server-side rendering optimization with component memoization and templatization",
"main": "lib/index.js",
"scripts": {
"test": "istanbul test _mocha -- -R spec --recursive test/spec",
"test-cov": "istanbul cover _mocha -- -R spec --recursive test/spec",
"lint": "npm run lint-lib && npm run lint-test",
"lint-lib": "eslint -c .eslintrc-node lib --color",
"lint-test": "eslint -c .eslintrc-test test --color",
"check": "npm run lint && npm run test-cov"
},
"repository": {
"type": "git",
"url": "[email protected]:walmartlabs/react-ssr-optimization.git"
},
"keywords": [
"react",
"server-side",
"optimization",
"memoization",
"templatization",
"cache",
"caching"
],
"author": "Naga Malepati, Maxime Najim, Seth Benjamin",
"license": "Apache-2.0",
"dependencies": {
"lodash": "^4.12.0",
"lru-cache": "^4.0.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-defaults": "^8.0.1",
"eslint-plugin-filenames": "^1.1.0",
"intercept-stdout": "^0.1.2",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"react": "^15.0.0 || ^0.14.8",
"react-dom": "^15.0.0 || ^0.14.8"
},
"peerDependencies": {
"react": "^15.0.0 || ^0.14.8"
}
}