-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.02 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
73
74
{
"name": "resizey",
"version": "0.0.14",
"description": "Resize event listeners on DOM Elements!",
"main": "dist/index.js",
"source": "src/index.js",
"files": [
"README.md",
"LICENSE",
"dist"
],
"scripts": {
"prestart": "prestart",
"build": "zero build",
"build:postclean": "rm -rf dist/__tests__ && rm -rf dist/__fixtures__",
"bundle": "microbundle --output build",
"dev": "zero test --watchAll",
"git:push": "git push --follow-tags",
"lint": "zero lint",
"format": "zero format",
"validate": "zero validate",
"precommit": "zero precommit",
"start": "npm run dev",
"test": "zero test --coverage",
"test:coverage": "zero test --coverage && open ./coverage/lcov-report/index.html",
"clean": "rm -rf dist lib build",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"release": "np --no-cleanup",
"version": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettier": "prettier \"src/**/*.{js,ts,tsx}\" --write",
"pretty": "npm run prettier"
},
"author": "Jon Quach <hello@jonquach.com> (https://jonquach.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjonq/resizey.git"
},
"bugs": {
"url": "https://github.com/itsjonq/resizey/issues"
},
"license": "MIT",
"keywords": [
"resize",
"resizey",
"element",
"eventlistener",
"event",
"addeventlistener",
"removeeventlistener",
"dom"
],
"engines": {
"node": ">=8"
},
"devDependencies": {
"@helpscout/prestart": "0.0.9",
"@helpscout/zero": "0.0.10",
"@storybook/addon-actions": "^4.0.12",
"@storybook/addon-links": "^4.0.12",
"@storybook/addons": "^4.0.12",
"@storybook/react": "^4.0.12",
"babel-core": "6.26.3",
"babel-loader": "^7.1.5",
"coveralls": "3.0.2",
"microbundle": "0.8.3",
"np": "3.0.4",
"nyc": "13.0.0",
"react": "16.6.3",
"react-dom": "16.6.3"
},
"dependencies": {}
}