-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 940 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": "bind-js",
"description": "Fast, unobstrusive and simple Javascript Templating and Binding",
"version": "0.4.3",
"private": false,
"author": {
"name": "Andres C. Rodriguez",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/acrodrig/bind"
},
"keywords": [
"bind",
"template",
"web"
],
"dependencies": {},
"devDependencies": {
"domino": "1.x"
},
"scripts": {
"build": "uglifyjs lib/bind.js -o dist/bind-$npm_package_version.min.js -c -m && cp lib/bind.js dist/bind-$npm_package_version.js",
"cov": "istanbul cover _mocha -- --check-leaks test/",
"preversion": "npm run test",
"postversion": "git push && git push --tags",
"test": "mocha --check-leaks test/bind.js",
"version": "npm run build && git add ."
},
"bugs": {
"url": "https://github.com/acrodrig/bind/issues"
}
}