-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.69 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
{
"name": "zipfy-albums",
"version": "0.1.1",
"private": false,
"description": "Sorting music albums with Zipf's Law",
"homepage": "https://github.com/balintsoos/zipfy-albums#readme",
"license": "MIT",
"keywords": [
"zipf",
"zipfy",
"zipf's law"
],
"author": {
"name": "Balint Soos",
"email": "soosbalint95@gmail.com",
"url": "http://balintsoos.com/"
},
"contributors": [
{
"name": "Balint Soos",
"email": "soosbalint95@gmail.com",
"url": "http://balintsoos.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://balintsoos@github.com/balintsoos/zipfy-albums.git"
},
"bugs": {
"url": "https://github.com/balintsoos/zipfy-albums/issues"
},
"engines": {
"node": ">=6.1.0"
},
"main": "./src/app.js",
"scripts": {
"start": "node ./src/app",
"lint": "eslint .",
"unit": "mocha ./**/*.spec.js",
"pretest": "npm run lint",
"test": "npm run unit",
"nyan": "mocha -R nyan ./**/*.spec.js",
"coverage": "istanbul cover _mocha -- -R nyan ./**/*.spec.js",
"precoveralls": "npm run coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"postcoveralls": "rm -rf ./coverage"
},
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.9",
"eslint": "2.10.1",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.8.0",
"istanbul": "0.4.3",
"mocha": "2.4.5",
"mocha-lcov-reporter": "1.2.0",
"sinon": "1.17.4",
"supertest": "1.2.0"
},
"dependencies": {
"body-parser": "1.15.1",
"chalk": "1.1.3",
"compression": "1.6.2",
"express": "4.13.4",
"helmet": "2.0.0",
"morgan": "1.7.0",
"nconf": "0.8.4"
}
}