-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "react2html",
"version": "0.2.1",
"repository": "https://github.com/Epistoli/react2html.git",
"engine": "node >= 4",
"author": {
"name" : "Maxim Bénadon",
"email" : "maxim@episto.li",
"url" : "https://github.com/shakaman"
},
"contributors": [
{
"name" : "Arnaud Berthomier",
"email" : "arnaud@episto.li",
"url" : "http://cypr.io"
}
],
"license": "MIT",
"dependencies": {
"babel-register": "^6.2.0",
"commander": "^2.9.0",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"scripts": {
"build": "gulp build",
"test": "mocha --compilers js:babel-register --recursive spec/"
},
"preferGlobal": true,
"bin": {
"react2html": "./dist/service.js"
},
"devDependencies": {
"react-addons-test-utils": "^15.0.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-mocha": "^2.2.0",
"mocha": "^2.3.4",
"enzyme": "^2.2.0",
"chai": "^3.4.1"
}
}