-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
{
"name": "@fcus/spotler-client",
"version": "0.2.8",
"description": "Node.js client for the Spotler REST API. Made with Typescript",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && mkdir dist && touch dist/.gitkeep && tsc",
"coverage": "c8 ava",
"coverage:check": "c8 --100 ava",
"prepublish": "npm run build",
"setup": "cp .env-example .env",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fcus/spotler-client.git"
},
"keywords": [],
"author": "Anne Jouke van den Berg",
"license": "MIT",
"bugs": {
"url": "https://github.com/fcus/spotler-client/issues"
},
"homepage": "https://github.com/fcus/spotler-client#readme",
"devDependencies": {
"@types/lodash": "4.14.179",
"@types/luxon": "2.3.0",
"@types/node": "15.12.2",
"@types/uuid": "8.3.0",
"ava": "4.0.1",
"axios": "0.26.0",
"c8": "7.11.0",
"dotenv": "10.0.0",
"lodash": "4.17.21",
"luxon": "2.3.1",
"ts-morph": "14.0.0",
"ts-node": "10.0.0",
"typescript": "4.3.2"
},
"dependencies": {
"@fcus/oauth-1-header": "^0.3.0",
"uuid": "8.3.2"
},
"ava": {
"files": [
"src/**/*.spec.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}