-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 758 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 758 Bytes
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
{
"name": "data-ts",
"version": "1.1.0",
"description": "Common algebraic structures heavily inspired by Haskell type classes adapted for fluent pointfree interfaces in Typescript.",
"homepage": "https://github.com/bhongy/data-ts",
"repository": {
"type": "git",
"url": "[email protected]:bhongy/data-ts.git"
},
"author": "Thanik Bhongbhibhat <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublish": "yarn clean && tsc -p tsconfig.publish.json",
"clean": "rm -rf ./lib"
},
"devDependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.0.8",
"jest": "24.8.0",
"ts-jest": "24.0.2",
"typescript": "3.5.2"
}
}