-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.64 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
{
"name": "ab-react-hook",
"version": "0.3.0",
"description": "🧪A/B-Testing React Hook",
"author": "Julian Ustiyanovych",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:ju1i4n/ab-react-hook.git"
},
"keywords": [],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "tslint 'src/**/*.{ts,tsx}' -t verbose",
"lint:fix": "tslint --project . --fix",
"codecov": "codecov",
"build": "rm -rf lib node_modules && yarn && tsc"
},
"files": [
"lib/*"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"dependencies": {
"@types/lodash.isequal": "^4.5.5",
"@types/url-parse": "^1.4.3",
"fbjs": "1.0.0",
"lodash.isequal": "^4.5.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"url-parse": "^1.4.7",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.8.19",
"babel-plugin-dynamic-import-node": "^2.2.0",
"codecov": "^3.5.0",
"husky": "^2.4.0",
"i": "^0.3.6",
"jest": "24.8.0",
"jest-environment-jsdom-global": "^1.2.0",
"npm": "^6.9.0",
"react-hooks-testing-library": "^0.5.1",
"react-test-renderer": "16.8.6",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.1"
}
}