-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "react-obs",
"version": "0.3.0",
"description": "A react store built on top of rxjs & hooks",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guojenman/react-obs.git"
},
"keywords": [
"react",
"rxjs",
"hooks",
"streams",
"reactive",
"state management",
"observable",
"model"
],
"author": "Miguel Guojian Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/guojenman/react-obs/issues"
},
"homepage": "https://github.com/guojenman/react-obs#readme",
"devDependencies": {
"@babel/core": "7.3.3",
"@babel/plugin-proposal-class-properties": "7.3.3",
"@babel/preset-react": "7.0.0",
"@types/react": "16.8.4",
"autoprefixer": "9.4.8",
"classnames": "2.2.6",
"npm": "6.10.0",
"parcel-bundler": "1.12.3",
"react": "16.8.2",
"react-dom": "16.8.2",
"rxjs": "6.4.0",
"todomvc-app-css": "2.2.0",
"typescript": "3.3.3333"
},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}