-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.54 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
{
"name": "super-ts",
"version": "1.11.1",
"description": "Typescript functional programming library inspired by Haskell and PureScript providing both runtime type checking and functional algebraic data types.",
"main": "cjs/index.js",
"module": "esm/index.mjs",
"files": [
"cjs",
"esm"
],
"scripts": {
"test": "scripty",
"test:watch": "scripty",
"test:performance": "scripty",
"build": "scripty",
"build:watch": "scripty",
"prepublish": "pnpm run build && pnpm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nthypes/super-ts.git"
},
"keywords": [
"functional programming",
"fantasy-land",
"static-land",
"fp-ts",
"io-ts",
"runtypes",
"purescript",
"haskell"
],
"author": "Antonio Moura (nthypes)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nthypes/super-ts/issues"
},
"homepage": "https://github.com/nthypes/super-ts#readme",
"devDependencies": {
"@ef-carbon/tspm": "^2.2.5",
"@types/benchmark": "^1.0.33",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"benchmark": "^2.1.4",
"eslint": "^6.8.0",
"jest": "^25.5.3",
"nodemon": "^2.0.4",
"scripty": "^2.0.0",
"ts-jest": "^25.4.0",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"scripty": {
"silence": true
},
"dependencies": {
"@types/ramda": "^0.27.4",
"ramda": "^0.27.0"
}
}