-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "unify",
"version": "0.0.1",
"description": "Unifies functors and monads into generic functions",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chorobin/unitfy.git"
},
"author": "Christopher Horobin",
"license": "ISC",
"bugs": {
"url": "https://github.com/chorobin/unitfy/issues"
},
"homepage": "https://github.com/chorobin/unitfy#readme",
"devDependencies": {
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/jest": "^23.1.1",
"babel-polyfill": "^6.26.0",
"immutable": "^3.8.2",
"jest": "^23.1.0",
"rxjs": "^6.2.1",
"tslint-config-airbnb": "^5.9.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/babel-polyfill/"
],
"testRegex": "./test/.*\\.(ts|tsx)$"
}
}