-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.04 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.04 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nodeschool-admin",
"version": "0.3.1",
"description": "CLI tool for setting up and maintaining a nodeschool chapters and other things.",
"main": "./lib/index.js",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"validate": "npm run lint && npm test",
"test": "istanbul cover _mocha -- tests/**/*.js",
"fastTest": "mocha tests/**/*.js",
"lint": "standard; markdownlint README.md CONTRIBUTING.md lib/common.help lib/chapter/event-create.help lib/chapter/init.help",
"start": "node bin/nodeschool-admin",
"postinstall": "echo \"Thank you for installing 'nodeschool-admin'!\""
},
"standard": {
"globals": [
"describe",
"it",
"beforeEach",
"afterEach"
],
"parser": "babel-eslint"
},
"bin": {
"nodeschool-admin": "bin/nodeschool-admin"
},
"keywords": [
"nodeschool",
"chapter",
"cli",
"community"
],
"author": "Martin Heidegger <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^4.1.6",
"chai": "^3.4.1",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"markdownlint-cli": "0.0.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"standard": "^5.4.1"
},
"dependencies": {
"bluebird": "^3.1.1",
"callback-stream": "^1.1.0",
"chalk": "^1.1.1",
"child-process-promise": "^1.1.0",
"figlet": "^1.1.1",
"git-url-parse": "^4.2.1",
"hyperquest": "^1.2.0",
"image-size": "^0.4.0",
"inquirer": "^0.11.1",
"iso3166-1": "^0.2.5",
"joi": "^7.2.1",
"moment-timezone": "^0.5.0",
"node-geo": "^0.1.0",
"nodegit": "^0.8.0",
"nopt": "^3.0.6",
"npmlog": "^2.0.0",
"semver-compare": "^1.0.0",
"tz-lookup": "^6.0.2",
"progress": "^1.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodeschool/admin.git"
},
"bugs": {
"url": "https://github.com/nodeschool/admin/issues"
},
"homepage": "https://github.com/nodeschool/admin#readme"
}