forked from wix-incubator/gulp-react-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1023 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1023 Bytes
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
{
"name": "gulp-react-templates",
"version": "0.2.1",
"description": "Gulp plugin for react-templates - Light weight templates for react -> write html get valid react code",
"repository": "wix/gulp-react-templates",
"main": "./index.js",
"keywords": [
"gulpplugin",
"templates",
"react-templates",
"react",
"reactjs",
"react.js"
],
"scripts": {
"test": "mocha",
"lint": "eslint index.js test/main.js",
"patch": "npm version patch -m\"update version to %s\" && git push && git push --tags",
"minor": "npm version minor -m\"update version to %s\" && git push && git push --tags",
"major": "npm version major -m\"update version to %s\" && git push && git push --tags"
},
"dependencies": {
"gulp-util": "^3.0.7",
"merge": "^1.2.0",
"react-templates": "^0.6.1",
"through2": "^2.0.0"
},
"devDependencies": {
"mocha": "^2.4.5",
"should": "^8.2.1"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"license": "MIT"
}