This repository was archived by the owner on Feb 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "handlebars-react",
"description": "Compile Handlebars templates to React.",
"version": "0.0.16",
"license": "MIT",
"homepage": "https://github.com/stevenvachon/handlebars-react",
"author": {
"name": "Steven Vachon",
"email": "contact@svachon.com",
"url": "http://www.svachon.com/"
},
"main": "lib",
"repository": {
"type": "git",
"url": "git://github.com/stevenvachon/handlebars-react.git"
},
"bugs": {
"url": "https://github.com/stevenvachon/handlebars-react/issues"
},
"dependencies": {
"handlebars-html-parser": "git://github.com/stevenvachon/handlebars-html-parser.git",
"postcss": "^5.0.17",
"postcss-js": "~0.1.2",
"react": "0.14.7"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"mkdirp": "~0.5.1",
"mocha": "^2.4.5",
"uglify-js": "^2.6.2"
},
"engines": {
"node": ">=5"
},
"scripts": {
"browserify": "npm dedupe && mkdirp browser && npm run browserify-full && npm run browserify-lite",
"browserify-full": "browserify lib/ --standalone HandlebarsReact --exclude any-promise | uglifyjs --compress --mangle -o browser/handlebars-react.min.js",
"browserify-lite": "browserify lib/ --standalone HandlebarsReact --exclude any-promise --exclude autoprefixer --exclude cssnano --exclude uglify-js | uglifyjs --compress --mangle -o browser/handlebars-react-lite.min.js",
"install": "npm run react-dom",
"react-dom": "node scripts/react-dom lib/ReactDOM.js",
"test": "npm run test-server",
"test-browser": "npm run browserify",
"test-server": "mocha test/ --reporter spec --check-leaks --bail --no-exit"
},
"files": [
"lib",
"scripts",
"license"
],
"keywords": [
"handlebars",
"mustache",
"react",
"template",
"view"
]
}