forked from serato/sws-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 KB
/
package.json
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
{
"name": "@serato/sws-sdk",
"version": "2.1.3",
"description": "Serato Web Services JS SDK",
"main": "src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src/*",
"test": "mocha --require @babel/register --recursive test/spec/*.js",
"test-integration": "mocha --require @babel/register --recursive test/integration/*.js",
"test-slow-integration": "mocha --require @babel/register --recursive test/slow/integration/*.js",
"docs": "./node_modules/.bin/esdoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serato/sws-js-sdk.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/serato/sws-js-sdk/issues"
},
"homepage": "https://github.com/serato/sws-js-sdk#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"aws-sdk": "^2.572.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^7",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6",
"nock": "^10"
},
"dependencies": {
"axios": "^0.19.0",
"js-base64": "^2.4.9"
}
}