-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.44 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
{
"name": "i18n-browserify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run bundle_all; npm run watch & cd dist; instant",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify app.js -o dist/en/bundle.js -t [ pkgify --packages [ --i18n i18n/en/en.js ] ] -t hbsfy",
"bundle": "mkdir -p dist/en; browserify app.js -o dist/en/bundle.js -t [ pkgify --packages [ --i18n ./i18n/en/en.js ] ] -t hbsfy",
"bundle_es": "mkdir -p dist/es; browserify app.js -o dist/es/bundle.js -t [ pkgify --packages [ --i18n i18n/es/es.js ] ] -t [ ./i18n/i18ify.js --path i18n --lang es ] -t hbsfy",
"bundle_de": "mkdir -p dist/de; browserify app.js -o dist/de/bundle.js -t [ pkgify --packages [ --i18n i18n/de/de.js ] ] -t [ ./i18n/i18ify.js --path i18n --lang de ] -t hbsfy",
"bundle_all": "npm run bundle & npm run bundle_de & npm run bundle_es; npm run html",
"html": "find dist -type d -depth 1 -exec cp index.html {} \\;"
},
"author": "olizilla",
"license": "ISC",
"dependencies": {
"handlebars": "^3.0.1",
"jed": "^1.1.0",
"moment": "^2.10.2",
"pkgify": "git://github.com/olizilla/pkgify.git#subarg-friendly"
},
"devDependencies": {
"browserify": "^9.0.7",
"hbsfy": "^2.2.1",
"instant-server": "^1.2.0",
"pkgify": "^1.0.1",
"through2": "^0.6.3",
"trumpet": "^1.7.1",
"underscore.string": "^3.0.3",
"watchify": "^3.1.1"
}
}