-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
37 lines (37 loc) · 1008 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
36
37
{
"name": "coupon-code",
"description": "An implementation of Perl's Algorithm::CouponCode for NodeJS.",
"version": "0.4.5",
"author": {
"name":"Andrew Chilton",
"email":"[email protected]",
"url":"http://chilts.org/"
},
"homepage": "https://github.com/chilts/node-coupon-code",
"contributors": [],
"devDependencies": {
"tape": "~4.0.0"
},
"dependencies": {
"xtend": "~4.0.0"
},
"main": "coupon-code.js",
"engines": {
"node": "*"
},
"repository": {
"type" : "git",
"url": "git://github.com/chilts/node-coupon-code.git"
},
"bugs" : {
"url" : "http://github.com/chilts/node-coupon-code/issues",
"mail" : "[email protected]"
},
"license": "MIT",
"keywords": [
"code", "token", "validation token", "verification token", "coupon code"
],
"scripts" : {
"test" : "set -e; for FILE in test/*.js; do node $FILE; done"
}
}