-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·71 lines (71 loc) · 2.18 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
{
"name": "hyperflow",
"version": "0.3.0-rc3",
"registry": "github",
"description": "A javascript state flow and mutation management toolkit & library for developing universal app.",
"license": "MIT",
"homepage": "https://github.com/tuantle/hyperflow",
"authors": [
"Tuan Le <[email protected]> (https://github.com/tuantle)"
],
"repository": {
"type": "git",
"url": "https://github.com/tuantle/hyperflow.git"
},
"keywords": [
"hypertoxin",
"flow",
"managment",
"functional",
"immutable",
"rxjs",
"react",
"react-native",
"state",
"predictable",
"unidirectional"
],
"bugs": {
"url": "https://github.com/tuantle/hyperflow/issues"
},
"main": "index.js",
"directories": {
"lib": "src"
},
"engines": {
"node": ">=9.x",
"npm": ">=5.x"
},
"dependencies": {
"rxjs": "^6.5.5"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-strict-mode": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-native": "^3.8.1",
"jest": "^25.5.2",
"metro-react-native-babel-preset": "^0.59.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"tape": "^5.0.0"
},
"scripts": {
"start-unit-tests": "NODE_ENV=development babel-node ./__tests__/test-suites",
"start-jest-unit-tests": "NODE_ENV=development jest ./__tests__/factory-specs/test-agent-factories-spec"
}
}