-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "@hereticaljs/hooks",
"version": "1.7.10",
"description": "Some useful React Hooks",
"main": "dist/index.js",
"scripts": {
"build:babel": "babel --ignore 'src/**/__tests__/' src --out-dir dist",
"build": "npm run build:babel",
"prettier": "npx prettier --write '{src,cypress}/**/*.js'",
"cypress:open": "cypress open",
"test:jest": "jest",
"test:cypress": "cypress run",
"test": "npm run test:jest && npm run test:cypress",
"release": "npm run build && np"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/HereticalJS/hooks.git"
},
"keywords": [
"React",
"React Hooks",
"Promise",
"Rx"
],
"author": "caasi Huang",
"license": "MIT",
"bugs": {
"url": "https://github.com/HereticalJS/hooks/issues"
},
"homepage": "https://github.com/HereticalJS/hooks#readme",
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-export-default-from": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-arrow-functions": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@cypress/browserify-preprocessor": "^2.1.4",
"@testing-library/react-hooks": "^3.2.1",
"blob": "0.0.5",
"cypress": "^3.7.0",
"cypress-react-unit-test": "^2.4.3",
"jest": "^24.9.0",
"mock-socket": "^9.0.2",
"np": "5.2.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0",
"rxjs": "^6.0.0"
},
"peerDependencies": {
"react": "^16.8.0",
"rxjs": "^6.0.0"
}
}