-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "lastfm-typed",
"version": "2.1.0",
"description": "Typed API wrapper for Last.FM using promises",
"main": "dist/index.js",
"author": "yayuyokitano",
"license": "MIT",
"dependencies": {
"cross-fetch": "^3.1.4",
"typed-emitter": "^1.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/isomorphic-fetch": "^0.0.35",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.5.10",
"ajv": "^8.5.0",
"c8": "^7.7.2",
"chai": "^4.3.4",
"chai-json-schema-ajv": "^5.2.4",
"mocha": "^9.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"typescript-json-schema": "^0.50.0"
},
"scripts": {
"test": "tsc && ts-node test/generator.ts && mocha --timeout 10000 --config mocharc.json test/*.test.ts",
"preparetest": "tsc && ts-node test/generator.ts",
"testonly": "mocha --timeout 10000 --config mocharc.json test/*.test.ts",
"coverage": "c8 -r html mocha --timeout 10000 --config mocharc.json test/*.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/yayuyokitano/lastfm-typed.git"
}
}