-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 988 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
{
"name" : "sampler",
"description" : "Record things, play them back",
"version" : "0.0.5",
"repository" : { "type": "git", "url": "git://github.com/daizoru/node-sampler.git" },
"license" : "BSD",
"author" : { "name" : "Julian Bilcke", "email" : "[email protected]", "url" : "http://github.com/daizoru" },
"engines" : { "node": "0.6.x || 0.7.x" },
"main" : "./lib/sampler",
"directories" : { "lib" : "./lib", "examples" : "./examples", "test" : "./test" },
"scripts" : {
"build" : "coffee --compile --output lib/ src/",
"watch" : "coffee --watch --compile --output lib/ src/",
"test" : "mocha",
"html" : "mocha --reporter doc"
},
"dependencies": {
"pkginfo" : "0.2.x",
"moment" : "1.6.x",
"snappy" : "1.2.0",
"libyaml" : "0.1.1"
},
"devDependencies": {
"should" : "0.6.x",
"coffee-script" : "1.3.x"
}
}