-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 882 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
30
31
32
33
34
35
{
"name": "smsghjs",
"version": "0.4.0",
"description": "An SMSGH API JavaScript client library",
"main": "index.js",
"scripts": {
"test": "standard && tape test/*.js",
"build-debug": "browserify index.js -o dist/smsgh.debug.js",
"build": "browserify -g uglifyify index.js -o dist/smsgh.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ngenerio/smsghjs"
},
"author": "Eugene Asiedu <[email protected]> (https://github.com/ngenerio)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngenerio/smsghjs/issues"
},
"homepage": "https://github.com/ngenerio/smsghjs",
"standard": {
"ignore": [
"dist/**"
]
},
"dependencies": {
"superagent": "^1.2.0"
},
"devDependencies": {
"browserify": "^10.2.0",
"standard": "^3.11.0",
"tape": "^4.0.0",
"uglifyify": "^3.0.1"
}
}