-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 882 Bytes
/
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
{
"name": "reactive-form-model",
"version": "0.0.7",
"description": "rxjs based, framework agnostic, tiny form state management library",
"main": "dist/index.js",
"author": "buhichan",
"repository": "buhichan/reactive-form-model.git",
"license": "MIT",
"scripts": {
"build": "yarn tsc -p .",
"test": "jest --coverage",
"preversion": "yarn build && git add -A",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/react": "^17",
"@types/react-dom": "^17",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"nyc": {
"extensions": [
".ts",
".tsx"
],
"include": [
"src/**/*.tsx?"
],
"exclude": [
"__test__"
]
},
"dependencies": {
"rxjs": "^6.6.3"
}
}