forked from KKBOX/OpenAPI-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.34 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
76
77
78
{
"name": "@kkboxorg/kkbox-javascript-developer-sdk",
"version": "1.0.0",
"description": "KKBOX Open API developer SDK for JavaScript. Use it to easily access KKBOX open API to get various metadata about KKBOX's tracks, albums, artists, playlists and stations. ",
"main": "src/SDK.js",
"scripts": {
"test": "mocha --trace-warnings -R spec -t 5000 --compilers babel-register ./test/authtest ./test/apitest",
"test-sdk": "mocha -t 5000 --compilers babel-register ./test/sdktest",
"test-auth": "mocha -t 5000 --compilers babel-register ./test/authtest",
"test-all": "mocha -t 5000 --compilers babel-register",
"test-jenkins": "JUNIT_REPORT_PATH=report.xml jenkins-mocha -t 5000 --cobertura --compilers babel-register --colors --reporter mocha-jenkins-reporter ./test/authtest ./test/apitest",
"build": "webpack -p",
"doc": "./node_modules/.bin/esdoc && open ./public/index.html",
"build-doc": "./node_modules/.bin/esdoc"
},
"author": "KKBOX",
"repository": {
"type": "git",
"url": "git+https://github.com/KKBOX/OpenAPI-JavaScript.git"
},
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.15.3",
"babel-polyfill": "^6.23.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-babili": "^0.1.2",
"babel-preset-env": "^1.3.2",
"esdoc": "^0.5.2",
"esdoc-standard-plugin": "0.0.7",
"jenkins-mocha": "^4.1.2",
"mocha": "^3.2.0",
"mocha-ci-slack-reporter": "^1.0.1",
"mocha-jenkins-reporter": "0.3.8",
"should": "^11.2.1",
"webpack": "^2.3.3"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 5
}
}
],
[
"babili",
{
"evaluate": true,
"mangle": true
}
]
]
},
"mailTo": "willyliu@kkbox.com",
"bugs": {
"url": "https://github.com/KKBOX/OpenAPI-JavaScript/issues"
},
"homepage": "https://github.com/KKBOX/OpenAPI-JavaScript#readme",
"directories": {
"test": "test"
},
"keywords": [
"KKBOX",
"OpenAPI",
"Open",
"API"
]
}