-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 889 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"private": true,
"repository": "https://github.com/helder/std",
"scripts": {
"postinstall": "lix download",
"submit": "bestzip submit.zip src/* haxelib.json readme.md extraParams.hxml && haxelib submit submit.zip && rm submit.zip",
"build:js": "lix build-js.hxml",
"version:js": "node package.js",
"publish:js": "ncp build/js dist/js && git-directory-deploy --directory dist/js --branch js-$(node version.js)",
"build:php": "lix build-php.hxml",
"publish:php": "ncp build/php dist/php && git-directory-deploy --directory dist/php --branch php-$(node version.js)",
"version:php": "git tag -a $(node version.js) -m $(node version.js) $(git log -n 1 --pretty=format:%H php-$(node version.js)) && git push --tags"
},
"devDependencies": {
"bestzip": "^2.1.7",
"git-directory-deploy": "^1.5.1",
"lix": "^15.9.1",
"ncp": "^2.0.0"
}
}