-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 1.62 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
{
"name": "ts.cryptojs256",
"version": "1.0.1",
"description": "A minimalist bundle of cryptoJS method for 256 bits keys.",
"main": "ts.cryptojs256.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:browserify": "browserify -s $npm_package_name *.js -o dist/$npm_package_name.js",
"build:uglify": "uglify -s dist/*.js -o dist/$npm_package_name.js",
"build:timodule": "echo '<?xml version=\"1.0\" encoding=\"UTF-8\"?><ti:module xmlns:ti=\"http://ti.appcelerator.org\" xmlns:android=\"http://schemas.android.com/apk/res/android\"></ti:module>' > dist/timodule.xml",
"build:manifest": "cp manifest dist/manifest",
"dist:prepare": "mkdir -p modules/commonjs/$npm_package_name",
"dist:move": "mv dist modules/commonjs/$npm_package_name/$npm_package_version",
"dist:zip": "zip -r $npm_package_name-commonjs-$npm_package_version.zip modules",
"prebuild": "mkdir -p dist",
"build": "npm run build:browserify && npm run build:uglify && npm run build:timodule && npm run build:manifest",
"postbuild": "npm run dist:prepare && npm run dist:move && npm run dist:zip && rm -r modules"
},
"devDependencies": {
"uglify": "^0.1.15",
"browserify": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheSmiths-Widgets/ts.cryptojs256.git"
},
"keywords": [
"cryptojs",
"hmac256",
"sha256"
],
"author": "The Smiths [Matthias Benkort]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TheSmiths-Widgets/ts.cryptojs256/issues"
},
"homepage": "https://github.com/TheSmiths-Widgets/ts.cryptojs256#readme"
}