-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.01 KB
/
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
39
40
{
"name": "random-tree-names",
"version": "3.0.5",
"description": "Get tree names for naming of things.",
"bin": "./bin/cli.js",
"main": "index.js",
"browser": "browser.js",
"dependencies": {
"clipboard": "^1.5.15",
"unique-random-array": "^1.0.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"browserify": "^14.1.0",
"budo": "^10.0.0",
"standard": "^10.0.3",
"tape": "^4.6.2"
},
"scripts": {
"test": "standard && tape test.js",
"start": "budo --live --host localhost index.js:bundle.js",
"build": "browserify index.js -o bundle.js",
"deploy": "npm run build && bash ./bin/deploy.sh"
},
"author": "Per Guth <mail@perguth.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pguth/random-tree-names.git"
},
"keywords": [
"names",
"random",
"trees"
],
"bugs": {
"url": "https://github.com/pguth/random-tree-names/issues"
},
"homepage": "https://github.com/pguth/random-tree-names#readme"
}