-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.08 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
{
"name": "@helpscout/react-utils",
"version": "2.4.1",
"description": "Handy utilities for React",
"main": "dist/index.js",
"private": false,
"scripts": {
"prestart": "zero prestart",
"build": "zero build && zero build --no-clean --ts --emitDeclarationOnly",
"postbuild": "rm -rf dist/__tests__ && rm -rf dist/__fixtures__",
"bundle": "zero bundle",
"lint": "zero lint",
"dev": "zero test --watchAll",
"test": "zero test --coverage",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "zero validate",
"format": "zero format",
"precommit": "zero pre-commit",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"release": "zero release",
"version": "npm run build",
"start": "npm run storybook",
"storybook": "start-storybook -p 5005",
"build-storybook": "build-storybook",
"prettier": "prettier \"src/**/*.js\" --write",
"pretty": "npm run prettier"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Jon Quach <[email protected]> (https://jonquach.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/helpscout/react-utils.git"
},
"bugs": {
"url": "https://github.com/helpscout/react-utils/issues"
},
"license": "MIT",
"peerDependencies": {
"react": "^17 || ^16 || ^15"
},
"devDependencies": {
"@helpscout/zero": "3.0.2",
"@storybook/addon-actions": "4.1.12",
"@storybook/addon-links": "4.1.12",
"@storybook/addons": "4.1.12",
"@storybook/cli": "4.1.12",
"@storybook/react": "4.1.12",
"@types/enzyme": "3.9.0",
"@types/jest": "23.3.12",
"@types/react": "16.8.6",
"babel-loader": "8.0.5",
"coveralls": "3.0.3",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"nyc": "13.3.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6"
},
"dependencies": {
"create-react-context": "0.2.3",
"dash-get": "1.0.2",
"hoist-non-react-statics": "3.2.1"
},
"optionalDependencies": {
"fsevents": "2.0.1"
}
}