forked from mozilla/reflex
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.56 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
72
73
74
75
{
"name": "reflex",
"version": "2.0.0",
"description": "Functional reactive UI library",
"keywords": [
"reflex",
"reactive",
"functional",
"UI"
],
"author": "Irakli Gozalishvili <[email protected]>",
"scripts": {
"prepare": "tsc --build",
"test:web": "playwright-test test/**/*.spec.js --cov && nyc report",
"test:node": "c8 --check-coverage --branches 85 --functions 70 --lines 80 mocha test/**/*.spec.js",
"test": "npm run test:node",
"typecheck": "tsc --build",
"precommit": "lint-staged"
},
"type": "module",
"main": "src/lib.js",
"types": "./dist/src/lib.d.ts",
"devDependencies": {
"typescript": "^4.6.3",
"@types/mocha": "^9.1.0",
"@types/chai": "^4.3.0",
"mocha": "^9.2.2",
"chai": "^4.3.6",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
],
"dist/src/lib.d.ts": [
"dist/src/lib.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/src/lib.d.ts",
"import": "./src/lib.js"
},
"./src/lib.js": {
"types": "./dist/src/lib.d.ts",
"import": "./src/lib.js"
}
},
"files": [
"src",
"dist/src"
],
"repository": {
"type": "git",
"url": "https://github.com/gozala/reflex.git"
},
"homepage": "https://github.com/gozala/reflex",
"c8": {
"exclude": [
"test/**",
"dist/**"
]
},
"lint-staged": {
"*.js": [
"prettier --parser flow --no-semi --write",
"git add"
]
},
"license": "MIT"
}