-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 876 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 876 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
35
36
37
{
"name": "jscn",
"version": "0.0.1",
"description": "The JavaScript Coding Nights Meetup group app",
"main": "index.js",
"bin": {
"jscn": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"jscn": "./node_modules/.bin/babel-node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscodingnights/jscn.git"
},
"keywords": [
"jscn",
"meetup"
],
"author": "JSCN",
"license": "MIT",
"bugs": {
"url": "https://github.com/jscodingnights/jscn/issues"
},
"homepage": "https://github.com/jscodingnights/jscn#readme",
"dependencies": {
"commander": "^2.9.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2"
}
}