This repository was archived by the owner on Dec 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "typeprops",
"version": "0.3.0",
"typings": "index.ts",
"files": [
"index.ts",
"match.ts",
"tsconfig.json"
],
"scripts": {
"prepare": "npm run test",
"pretest": "tsc -p tests/tsconfig.json",
"test": "tape tests/.build/examples/**/*.js | tap-spec",
"fix": "prettier --write \"**/*.{ts,json,md,prettierrc}\""
},
"devDependencies": {
"@types/tape": "^4.2.32",
"prettier": "^1.12.1",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"tslint-eslint-rules": "^5.1.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.8.0"
},
"description": "Small library for describing HKTs in TypeScript",
"repository": {
"type": "git",
"url": "git+https://github.com/SimonMeskens/TypeProps.git"
},
"keywords": [
"typescript",
"hkt",
"adt",
"types",
"fantasy-land",
"static-land"
],
"author": "Simon Meskens",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SimonMeskens/TypeProps/issues"
},
"homepage": "https://github.com/SimonMeskens/TypeProps#readme"
}