-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
38 lines (38 loc) · 905 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
38
{
"name": "pixel-ping",
"description": "A minimalist pixel tracker.",
"homepage": "http://github.com/documentcloud/pixel-ping",
"keywords": [
"javascript",
"server",
"tracking"
],
"author": "Jeremy Ashkenas and Jeff Larson",
"version": "0.1.6",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/documentcloud/pixel-ping/raw/master/LICENSE"
}
],
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "http://github.com/document-cloud/pixel-ping.git"
},
"bin": {
"pixel-ping": "./bin/pixel-ping"
},
"devDependencies": {
"coffeescript": "^2.1.0",
"docco": "^0.8.0"
},
"scripts": {
"doc": "cd src && docco pixel-ping.coffee -o ../docs",
"compile": "coffee -c -o lib src",
"watch": "coffee -cw -o lib src",
"test": "coffee -c -o lib src && coffee test/test-ping.coffee"
}
}