forked from Borewit/musicbrainz-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.58 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
93
94
95
96
97
98
{
"name": "musicbrainz-api",
"version": "0.5.2",
"description": "MusicBrainz API client for reading and submitting metadata",
"main": "lib/musicbrainz-api",
"types": "lib/musicbrainz-api",
"author": {
"name": "Borewit",
"url": "https://github.com/Borewit"
},
"keywords": [
"MusicBrainz",
"metadata",
"meta",
"tag",
"tags",
"Picard",
"json",
"xml",
"web",
"service",
"submit",
"metabrainz"
],
"license": "MIT",
"private": false,
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/mocha": "^7.0.1",
"@types/node": "^14.0.27",
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"del-cli": "^3.0.0",
"mocha": "^8.1.2",
"nyc": "^15.0.0",
"remark-cli": "^7.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.1",
"typescript": "^4.0.2"
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/Borewit/musicbrainz-api.git"
},
"bugs": {
"url": "https://github.com/Borewit/musicbrainz-api/issues"
},
"dependencies": {
"@types/caseless": "^0.12.1",
"@types/request-promise-native": "^1.0.17",
"@types/uuid": "^3.4.6",
"caseless": "^0.12.0",
"debug": "^4.1.1",
"http-status-codes": "^1.4.0",
"json-stringify-safe": "^5.0.1",
"jsontoxml": "^1.0.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"source-map-support": "^0.5.16",
"uuid": "^3.3.2"
},
"scripts": {
"clean": "del-cli lib/** src/**/*.js src/**/*.js.map src/**/*.d.ts test/**/*.js test/**/*.js.map",
"compile-src": "tsc -p src",
"compile-test": "tsc -p test",
"compile": "npm run compile-src && npm run compile-test",
"lint-ts": "tslint 'src/**/*.ts' --exclude 'src/**/*.d.ts' 'test/**/*.ts' --exclude 'test/**/*.d.ts'",
"lint-md": "remark -u preset-lint-recommended .",
"lint": "npm run lint-md && npm run lint-ts",
"test": "mocha --require ts-node/register --require source-map-support/register --full-trace test/test-*.ts",
"build": "npm run clean && npm run compile",
"start": "npm-run-all compile lint cover-test",
"test-coverage": "nyc npm run test",
"send-coveralls": "nyc report --reporter=text-lcov | coveralls",
"send-codacy": "nyc report --reporter=text-lcov | codacy-coverage"
},
"nyc": {
"exclude": [
"lib/**",
"test/**/*.ts",
"src/**/*.js"
],
"extension": [
".ts"
],
"sourceMap": true,
"instrument": true,
"reporter": [
"lcov",
"text"
],
"report-dir": "coverage"
}
}