-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 911 Bytes
/
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
{
"name": "javascript-ampache",
"version": "1.1.1",
"description": "A JS library for the Ampache API",
"main": "dist/index.js",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts",
"repository": "github:mitchray/javascript-ampache",
"scripts": {
"build": "rimraf dist && microbundle --tsconfig tsconfig.json",
"dev": "microbundle watch --tsconfig tsconfig.json",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"isomorphic-unfetch": "^3.1.0",
"jest": "^29.3.1",
"jssha": "^3.3.0",
"microbundle": "^0.15.1",
"nock": "^13.0.0",
"querystringify": "2.2.0",
"rimraf": "^5.0.0"
},
"keywords": [
"ampache",
"javascript",
"typescript",
"api",
"js"
],
"author": "mitchray (https://github.com/mitchray)",
"license": "GPL-3.0-only",
"files": [
"src",
"dist"
]
}