-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "fp-ts-form",
"version": "0.0.4",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"files": [
"lib"
],
"scripts": {
"prepare": "install-self-peers -- --ignore-scripts",
"clean": "rimraf lib",
"build": "yarn clean && tsc -p ./tsconfig.build.json",
"tslint": "tslint -c tslint.json --project tsconfig.json './src/**/*.ts{,x}'",
"prettier": "prettier --list-different \"./src/**/*.ts{,x}\"",
"prettier:fix": "prettier --write \"./src/**/*.ts{,x}\"",
"prepublishOnly": "npm run build"
},
"author": "Max Willmott <max.willmo@gmail.com>",
"description": "Data type and combinators to build forms using fp-ts & React",
"repository": {
"type": "git",
"url": "https://github.com/Willmo36/form-ts.git"
},
"tags": [
"typescript",
"fp-ts",
"functional-programming"
],
"keywords": [
"typescript",
"fp-ts",
"functional-programming"
],
"license": "MIT",
"peerDependencies": {
"fp-ts": "^2.1.2",
"monocle-ts": "^2.1.0",
"newtype-ts": "^0.3.4"
},
"devDependencies": {
"@team-griffin/install-self-peers": "^1.1.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"fp-ts-contrib": "^0.1.18",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"tslint-immutable": "^6.0.1",
"typescript": "^3.8.3"
}
}