-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1004 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 1004 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
{
"name": "library-of-twitter",
"version": "1.0.0",
"description": "Inspired by [the Library of Babel](https://en.wikipedia.org/wiki/The_Library_of_Babel), the goal of this project is to provide a generator of tweets, using a random combination of 274 characters (5 are reserved for the hashtag \" #lot\", and the last one is a trailing space character inserted by Twitter). Allowed characters include the 26 lower case letters of latin alphabet, comma, period and space.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rocambille/library-of-twitter.git"
},
"author": "rocambille",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocambille/library-of-twitter/issues"
},
"homepage": "https://github.com/rocambille/library-of-twitter#readme",
"dependencies": {
"random": "^3.0.6"
},
"devDependencies": {
"browserify": "^17.0.0"
}
}