-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 923 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 923 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": "djhack",
"private": true,
"version": "1.0.0",
"description": "An open source, multi-platform, and collaborative service to create playlists and play music with your friends",
"main": "index.js",
"scripts": {
"lint": "eslint client/ models/ server/",
"start": "meteor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorMMorant/djhack.git"
},
"author": "Mathieu Dutour <mathieu@dutour.me> (http://mathieu.dutour.me/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/VictorMMorant/djhack/issues"
},
"homepage": "https://github.com/VictorMMorant/djhack#readme",
"devDependencies": {
"babel": "6.1.18",
"babel-eslint": "4.1.5",
"eslint": "1.10.1",
"eslint-config-airbnb": "1.0.0",
"eslint-plugin-meteor": "1.7.0",
"ghooks": "1.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint"
}
}
}