This repository has been archived by the owner on Oct 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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": "@synvox/rehook",
"public": true,
"version": "0.0.17",
"main": "dist/index.js",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@otris/jsdoc-tsd": "^1.0.4",
"@types/jest": "^24.0.11",
"babel-eslint": "9.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.3",
"jsdoc": "^3.5.5",
"prettier": "1.14.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.0",
"tsc": "^1.20150623.0"
},
"peerDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"scripts": {
"start": "react-scripts start",
"build:cra": "react-scripts build",
"test:eslint": "eslint src --fix",
"test:jest": "react-scripts test",
"test": "CI=true npm run test:eslint && CI=true npm run test:jest --findRelatedTests",
"eject": "react-scripts eject",
"build": "npm run build:bundle && npm run build:types && npm run build:package",
"build:bundle": "NODE_ENV='production' babel -s -d ./dist/ ./src/rehook",
"build:package": "cp ./README.md dist/README.md && cp ./package.json dist/package.json",
"build:types": "jsdoc -t node_modules/@otris/jsdoc-tsd -r ./src/rehook -d dist/rehook.d.ts",
"pub": "npm run build && npm publish"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": "yarn test"
}
}
}