-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
80 lines (80 loc) · 2.58 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "metalsmith-react-templates",
"version": "7.1.0",
"description": "A metalsmith templating plugin using JSX templates. Supports React / Preact / React-Router etc.",
"main": "index.js",
"scripts": {
"build": "npm run build:lib && npm run build:engine",
"build:lib": "cross-env NODE_ENV=production babel src --out-dir . --ignore *.spec.js,*.spec.jsx",
"build:engine": "node ./build-engine.js",
"clean": "rimraf lib jsx-render-engine coverage ./index.js ./withInitialProps.js .nyc_output",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=lcov",
"coveralls": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext js src tests",
"test": "cross-env NODE_PATH=./ NODE_ENV=test npm run test:run",
"test:run": "nyc --reporter=text-summary mocha 'src/**/*.spec.@(js|jsx)'",
"test:watch": "npm run test -- -- --watch"
},
"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": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"cross-env": "^4.0.0",
"eslint": "^3.13.1",
"eslint-plugin-react": "^6.9.0",
"execa": "^0.6.3",
"metalsmith": "^2.3.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"preact": "8.1.0",
"preact-compat": "^3.13.1",
"preact-render-to-string": "^3.6.0",
"prop-types": "^15.5.8",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-router": "4.1.1",
"rimraf": "^2.6.1",
"sinon": "^2.1.0"
},
"dependencies": {
"async": "^2.0.1",
"debug": "^2.2.0",
"lodash": "^4.17.4",
"multimatch": "^2.1.0"
},
"peerDependencies": {
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1"
}
}