-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "srd",
"version": "1.0.5",
"description": "Static Land Compliant Remote Data Type in TypeScript",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"browser": "dist/bundle.umd.js",
"types": "dist/index.d.ts",
"author": "Jason Rametta",
"license": "BSD-3-Clause",
"private": false,
"sideEffects": false,
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build:tsd": "rm -rf dist && tsc src/index.ts --emitDeclarationOnly -d --outDir dist",
"rollup": "./node_modules/.bin/rollup -c",
"build": "yarn build:tsd && yarn rollup",
"deploy": "yarn build && yarn publish"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.1",
"rollup": "^2.32.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.28.0",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
},
"repository": "https://github.com/rametta/srd.git",
"bugs": {
"url": "https://github.com/rametta/srd/issues"
},
"homepage": "https://github.com/rametta/srd",
"keywords": [
"functional",
"static land",
"fantasy land",
"compliant",
"hkt",
"higher kinded types",
"polymetric polymorphism",
"lightweight",
"remote data",
"monads",
"fast",
"easy",
"typescript"
]
}