-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "sodium-frp-react",
"version": "0.3.1",
"description": "Higher order components to easily use SodiumJS Functional Reactive Programming with Facebook React",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ziriax/sodium-frp-react.git"
},
"keywords": [
"FRP",
"sodium",
"sodiumjs",
"react",
"reactjs",
"facebook",
"reactive",
"functional",
"bridge",
"redux",
"flux"
],
"author": "Peter Verswyvelen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ziriax/sodium-frp-react/issues"
},
"homepage": "https://github.com/Ziriax/sodium-frp-react#readme",
"dependencies": {
"hoek": "^4.2.1",
"lodash": "^4.17.10",
"react": "^16.4.2",
"sodiumjs": "^1.1.3",
"sshpk": "^1.14.2",
"typescript-collections": "^1.3.2"
},
"devDependencies": {
"@types/jest": "^21.1.10",
"@types/react": "^16.4.11",
"jest": "^21.2.1",
"ts-jest": "^21.2.4",
"typescript": "^2.9.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}