forked from chilts/node-coupon-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.04 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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": "coupon-code",
"description": "An implementation of Perl's Algorithm::CouponCode for NodeJS.",
"version": "0.1.0",
"author": {
"name":"Andrew Chilton",
"email":"chilts@appsattic.com",
"url":"http://www.chilts.org/"
},
"homepage": "https://github.com/appsattic/node-coupon-code",
"contributors": [],
"devDependencies": {
"tap": ">= 0.0.14"
},
"dependencies": {},
"main": "coupon-code.js",
"engines": {
"node": "*"
},
"repository": {
"type" : "git",
"url": "git://github.com/appsattic/node-coupon-code.git"
},
"bugs" : {
"url" : "http://github.com/appsattic/node-coupon-code/issues",
"mail" : "chilts@appsattic.com"
},
"licenses": [{
"type": "MIT",
"url": "https://raw.github.com/appsattic/node-coupon-code/master/LICENSE"
}],
"keywords": [
"code", "token", "validation token", "verification token", "coupon code"
],
"scripts" : {
"test" : "tap test/*.js"
}
}