-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
29 lines (29 loc) · 840 Bytes
/
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
{
"name": "js-pdu-decoder",
"version": "1.0.4",
"description": "Decodes many PDU encoded SMS formats.",
"main": "jspdudecoder.js",
"scripts": {
"bundle-js": "node_modules/browserify/bin/cmd.js -g uglifyify source/jspdudecoder.js -o source/bundle.js",
"bundle-css": "node_modules/clean-css/bin/cleancss source/jspdudecoder.css -o source/bundle.css",
"serve": "DEV_SERVER_ROOT=source/ node_modules/dev-server/bin/dev-server"
},
"repository": {
"type": "git",
"url": "git@github.com:tladesignz/jsPduDecoder.git"
},
"keywords": [
"SMS",
"PDU",
"Decoder"
],
"author": "Benjamin Erhart",
"license": "(GPL-3.0 OR Artistic-2.0)",
"devDependencies": {
"browserify": "^11.0.1",
"clean-css": "^3.4.1",
"dev-server": "0.0.2",
"jquery": "^3.0.0",
"uglifyify": "^3.0.1"
}
}