forked from gcanti/elm-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "elm-ts",
"version": "0.6.0",
"description": "A porting of TEA to TypeScript featuring fp-ts, rxjs6 and React",
"files": [
"lib",
"es6"
],
"main": "lib/index.js",
"module": "es6/index.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/gcanti/elm-ts.git"
},
"author": "Giulio Canti <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/elm-ts/issues"
},
"homepage": "https://github.com/gcanti/elm-ts",
"tags": [
"typescript",
"elm",
"fp-ts"
],
"keywords": [
"typescript",
"elm",
"fp-ts"
],
"scripts": {
"check": "tsc -p .",
"lint": "tslint -p . -t verbose",
"pretest": "npm run check && npm run lint",
"test": "jest",
"posttest": "npm run docs",
"prebuild": "rm -rf ./lib ./es6",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
"postbuild": "ts-node scripts/rewrite-es6-paths",
"docs": "docs-ts",
"postdocs": "ts-node scripts/docs-index"
},
"dependencies": {
"history": "^4.7.2"
},
"peerDependencies": {
"@types/history": "^4.6.2",
"fp-ts": "^2.0.2",
"rxjs": "^6.5.2",
"react": "^16.8.6"
},
"devDependencies": {
"@types/blessed": "^0.1.17",
"@types/glob": "^7.1.2",
"@types/history": "^4.6.2",
"@types/jest": "^26.0.3",
"@types/node": "^10.17.9",
"@types/react": "^16.0.27",
"@types/react-dom": "^16.9.3",
"@types/sinon": "^9.0.4",
"blessed": "^0.1.81",
"chalk": "^4.1.0",
"docs-ts": "^0.5.1",
"fp-ts": "^2.0.2",
"glob": "^7.1.6",
"husky": "^4.2.5",
"io-ts": "^2.0.0",
"jest": "^26.1.0",
"monocle-ts": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.8.6",
"react-blessed": "^0.6.2",
"react-dom": "^16.11.0",
"rxjs": "^6.5.2",
"sinon": "^9.0.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.5.3"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"diagnostics": true
}
},
"bail": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/test/",
"<rootDir>/node_modules/"
],
"coverageReporters": [
"text"
],
"roots": [
"<rootDir>/test/"
],
"testMatch": null,
"testRegex": "(\\.|/)(test|spec)\\.tsx?$"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}