-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.22 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
{
"name": "react-enable",
"version": "2.0.7",
"description": "feature flags to enable and disable functionality at runtime in a react application",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"lib": "es2015",
"types": "./lib/esm/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "npx jest --watch"
},
"repository": {
"type": "git",
"url": "git@github.com:pliosoft/react-enable.git"
},
"keywords": [
"feature",
"flag",
"enable",
"toggle"
],
"author": "Christopher Lord",
"license": "ISC",
"bugs": {
"url": "https://github.com/pliosoft/react-enable/issues"
},
"homepage": "https://github.com/pliosoft/react-enable#readme",
"peerDependencies": {
"react": "^17",
"fp-ts": "^2.9",
"tslib": "^1.11"
},
"devDependencies": {
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.20",
"@types/react": "^17",
"fp-ts": "^2.9",
"jest": "^26.6.3",
"react": "^17",
"react-test-renderer": "^17",
"ts-jest": "^26.5.2",
"tslib": "^1.11",
"typescript": "^4.2"
}
}