-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.67 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@audius/audius.js",
"version": "0.0.4",
"description": "Audius.js presents a simple, consumable API for interacting with the Audius network.",
"repository": {
"type": "git",
"url": "git+https://github.com/AudiusProject/audius.js"
},
"author": "Audius",
"license": "Apache-2.0",
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=10.15.3",
"npm": ">=5"
},
"standard": {
"parser": "babel-eslint",
"env": [
"jest"
],
"ignore": []
},
"homepage": "https://github.com/AudiusProject/audius.js",
"bugs": {
"url": "https://github.com/AudiusProject/audius.js/issues"
},
"scripts": {
"test": "echo \"No test specified, better write some!\"",
"build": "npm run docs && rollup -c",
"start": "npm run docs && rollup -c -w",
"docs": "typedoc",
"lint": "./node_modules/.bin/eslint 'src/**/*.ts*'",
"lint-fix": "./node_modules/.bin/eslint 'src/**/*.ts*' --fix"
},
"dependencies": {
"@audius/libs": "0.11.79",
"@types/btoa": "^1.2.3",
"analytics-node": "^3.4.0-beta.1",
"btoa": "^1.2.1",
"eventemitter3": "^4.0.0",
"lodash": "^4.17.15"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/analytics-node": "^3.1.3",
"@types/express": "^4.17.6",
"@types/hls.js": "^0.12.6",
"@types/lodash": "^4.14.150",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-runtime": "^6.26.0",
"cross-env": "^5.2.1",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"prettier": "2.0.5",
"prettier-config-standard": "^1.0.1",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.24.0",
"rollup-plugin-url": "^2.2.2",
"standard": "^14.3.3",
"ts-jest": "^22.4.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typedoc": "^0.17.0-3",
"typescript": "^3.8.3",
"pre-commit": "^1.2.2"
},
"files": [
"dist"
]
}