forked from nickpresta/payform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 863 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
{
"name": "payform",
"version": "1.0.2",
"description": "A general purpose library for building credit card forms, validating inputs, and formatting numbers.",
"keywords": [
"payment",
"form",
"cc",
"card",
"credit card",
"formatting",
"validation"
],
"author": "Jonathan D. Johnson <me@jondavidjohn.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jondavidjohn/payform.git"
},
"main": "dist/payform.js",
"scripts": {
"test": "mocha ./test/**_spec.coffee",
"build": "coffee -c --no-header -o ./dist/ ./src/payform.coffee && uglify -s ./dist/payform.js -o ./dist/payform.min.js && npm test",
"watch": "watch 'npm run build'"
},
"devDependencies": {
"coffee-script": "~1.9.0",
"watch": "~0.13.0",
"uglify": "~0.1.1",
"mocha": "~2.1.0"
}
}