-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "@helpscout/vcr",
"version": "0.0.6",
"private": false,
"description": "VCR: A tiny React component to handle video embeds",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"dev": "zero test --watchAll",
"test": "zero test --coverage",
"test:coverage": "npm run test",
"bundle": "zero build --bundle",
"build": "npm run clean && zero build",
"lint": "zero lint",
"start": "npm run storybook",
"version": "npm run build",
"postversion": "npm publish",
"release": "np --no-yarn --no-publish",
"storybook": "BABEL_ENV=develop start-storybook -p 8228",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"prettier": "prettier \"src/**/*.js\" --write",
"precommit": "zero precommit"
},
"author": "Jon Quach <hello@jonquach.com> (https://jonquach.com)",
"license": "MIT",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@helpscout/zero": "0.0.7",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/react": "^3.4.8",
"coveralls": "3.0.0",
"enzyme": "2.9.1",
"husky": "0.14.3",
"jest": "22.4.3",
"jest-cli": "22.4.3",
"np": "2.20.1",
"nyc": "11.7.1",
"prettier": "1.13.0",
"pretty-quick": "1.6.0",
"react": "^15",
"react-dom": "^15",
"react-frame-component": "^1.1.0",
"react-test-renderer": "^15"
},
"files": [
"dist"
],
"dependencies": {
"@helpscout/react-utils": "0.0.2"
}
}