forked from yeojz/metalsmith-react-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "metalsmith-react-templates",
"version": "0.2.0",
"description": "A metalsmith plugin to render files using ReactJS based templates",
"main": "lib/index.js",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"test-publish": "npm run test && npm publish",
"test": "npm run build && mocha",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/yeojz/metalsmith-react-templates.git"
},
"keywords": [
"metalsmith",
"static-site",
"generator",
"react",
"reactjs",
"template",
"engine",
"view"
],
"author": "Gerald Yeo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeojz/metalsmith-react-templates/issues"
},
"homepage": "https://github.com/yeojz/metalsmith-react-templates",
"devDependencies": {
"assert-dir-equal": "^1.0.1",
"eslint": "^0.21.1",
"metalsmith": "^1.7.0",
"mocha": "^2.2.5",
"sync-exec": "^0.5.0"
},
"dependencies": {
"async": "^0.9.0",
"babel": "^5.4.3",
"babel-core": "^5.2.17",
"debug": "^2.2.0",
"multimatch": "^2.0.0",
"object-assign": "^2.0.0",
"react": "^0.13.3",
"react-tools": "^0.13.3"
}
}