-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.88 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
{
"name": "@cala/remote-collection",
"version": "1.2.1",
"description": "A RemoteData Collection class",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "bin/test",
"prepublishOnly": "bin/test && bin/build"
},
"repository": {
"type": "git",
"url": "[email protected]:ca-la/remote-collection.git"
},
"keywords": [
"RemoteData",
"algebraic-data-types",
"TypeScript",
"REST",
"GraphQL",
"data",
"fetch"
],
"author": "CALA <[email protected]>",
"contributors": [
{
"name": "Dylan Pyle",
"email": "[email protected]",
"url": "https://github.com/dylanpyle"
},
{
"name": "Nicholas Alekhine",
"email": "[email protected]",
"url": "https://github.com/alekhinen"
},
{
"name": "Sam Swanke",
"email": "[email protected]",
"url": "https://github.com/skswanke"
},
{
"name": "Sebastian Coraccio",
"email": "[email protected]",
"url": "https://github.com/sebastiancoraccio"
},
{
"name": "Scott Trinh",
"email": "[email protected]",
"url": "https://github.com/scotttrinh"
}
],
"license": "MPL-2.0",
"bugs": {
"url": "https://gitlab.com/ca-la/remote-collection/issues"
},
"homepage": "https://gitlab.com/ca-la/remote-collection#readme",
"devDependencies": {
"@types/lodash": "^4.14.165",
"ava": "^3.13.0",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"tslib": "^1.9.3",
"typescript": "^3.5.3"
},
"publishConfig": {
"access": "public"
},
"ava": {
"files": [
"**/__tests__/**/*",
"!**/__tests__/fixtures/*"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@cala/remote-data": "^0.3.1",
"fp-ts": "^1.16.1",
"lodash": "^4.17.20"
}
}