-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.71 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
{
"name": "music-server",
"version": "1.0.0",
"private": true,
"description": "RestAPI to retrieve music information from musicbrainz, coverart and wikipedia.",
"keywords": [],
"author": "",
"license": "",
"main": "build/app.js",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"bluebird": "^3.4.1",
"bluebird-retry": "^0.8.0",
"chai": "^3.5.0",
"connect-timeout": "^1.7.0",
"debug": "^2.2.0",
"express": "^4.12.3",
"mocha": "^2.5.3",
"mysql": "^2.11.1",
"npm-build-tools": "^2.2.5",
"promise-queue": "^2.2.3",
"promise-throttle": "^0.2.0",
"request": "^2.74.0",
"request-promise": "^4.0.2",
"simple-lru-cache": "0.0.2",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"swagger-express-mw": "^0.1.0",
"swagger-node-runner": "^0.7.1"
},
"devDependencies": {
"should": "^7.1.0",
"supertest": "^1.0.0",
"z-schema": "^3.12.0",
"request": "^2.58.0",
"chai": "^3.0.0",
"mocha": "^2.2.5",
"dotenv": "^1.2.0"
},
"scripts": {
"start": "node build/app.js",
"dev": "npm run build && npm run debug",
"debug": "node --nolazy --inspect-brk=9229 build/app.js",
"test": "mocha --no-timeouts --colors --recursive build/",
"build": "babel . -d build/ --ignore build,node_modules,public",
"prebuild": "n-copy --source api/swagger --destination build/api/swagger '*'"
},
"babel": {
"presets": [
"es2015"
],
"sourceMaps": "both"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 2
}
}
}