forked from lavalibs/encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
43
44
{
"name": "@sirubot/encoding",
"version": "0.1.2-spotify",
"description": "Encode & decode lavaplayer tracks locally",
"main": "dist/src/index.js",
"typings": "typings/src/index.d.ts",
"scripts": {
"test": "npm run test:browser && npm run test:node",
"test:browser": "jest --config jest.config.browser.js",
"test:node": "jest --config jest.config.node.js",
"build": "rimraf dist typings && tsc",
"prepare": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavalibs/encoding.git"
},
"keywords": [
"lavaplayer",
"track"
],
"author": "natanbc",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lavalibs/encoding/issues"
},
"homepage": "https://github.com/lavalibs/encoding#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-bigint": "^7.4.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/base64-js": "^1.2.5",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.4"
},
"dependencies": {
"base64-js": "^1.3.1"
}
}