This repository was archived by the owner on Dec 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "gulp-render-react",
"version": "3.1.3",
"description": "Render react components to string or static markup",
"author": {
"name": "Andrew Shapro",
"email": "me@andrewshapro.com",
"url": "http://github.com/abramz/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/abramz/gulp-render-react.git"
},
"bugs": {
"url": "https://github.com/abramz/gulp-render-react/issues"
},
"keywords": [
"gulpplugin",
"react",
"prerender"
],
"main": "lib/render-react.js",
"files": [
"lib"
],
"scripts": {
"clean": "rm -rf lib/",
"prebuild": "npm run clean",
"test": "./node_modules/.bin/mocha --reporter spec --compilers js:babel-register",
"coverage": "./node_modules/.bin/babel-node ./node_modules/isparta/bin/isparta cover --report lcov node_modules/.bin/_mocha -- --recursive --reporter=spec",
"lint": "./node_modules/.bin/eslint src test",
"build": "./node_modules/.bin/babel src --out-dir lib"
},
"pre-commit": [
"build",
"lint",
"test"
],
"dependencies": {
"gulp-util": "^3.0.7",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"through2": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.1.2",
"isparta": "^4.0.0",
"mocha": "^3.0.2",
"pre-commit": "^1.1.2",
"react-router": "^3.0.0"
}
}