-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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
{
"name": "react-hogan",
"version": "0.1.1",
"description": "React component wrapping Hogan.js. Can be used to render client-provided templates.",
"main": "lib/index.js",
"jsnext:main": "es6/index.js",
"files": [
"css",
"es6",
"lib",
"umd"
],
"scripts": {
"build": "nwb build",
"clean": "nwb clean",
"start": "nwb serve",
"test": "nwb test",
"test:watch": "nwb test --server",
"deploy": "gh-pages -d demo/dist"
},
"dependencies": {
"hogan.js": "^3.0.2",
"react-addons-shallow-compare": "^15.0.2"
},
"peerDependencies": {
"react": "^15.0.2"
},
"devDependencies": {
"gh-pages": "^0.11.0",
"nwb": "0.9.x",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-codemirror": "^0.2.6"
},
"authors": [
{
"name": "Gregory Potdeviny",
"email": "[email protected]"
}
],
"homepage": "http://gregorypotdevin.github.io/react-hogan/",
"bugs": {
"url": "https://github.com/GregoryPotdevin/react-hogan/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GregoryPotdevin/react-hogan.git"
},
"keywords": [
"react",
"react-component",
"hogan", "hogan.js",
"mustache",
"template"
]
}