-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 771 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 771 Bytes
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
{
"name" : "markov",
"description" : "Silly markov chatbot module",
"version" : "0.0.6",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/node-markov.git"
},
"main" : "./index.js",
"directories" : {
"lib" : ".",
"example" : "./example"
},
"scripts" : {
"test" : "expresso"
},
"engines" : {
"node" : ">=0.4.0"
},
"dependencies" : {
"deck" : ">=0.0.3",
"lazy" : ">=1.0.3",
"hashish" : ">=0.0.2"
},
"devDependencies" : {
"expresso" : ">=0.7.0"
},
"license" : "MIT/X11",
"author" : {
"name" : "James Halliday",
"email" : "mail@substack.net",
"url" : "http://substack.net"
}
}