forked from zzarcon/default-passive-events
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "default-passive-events",
"version": "1.0.7",
"description": "Makes {passive: true} by default when EventListenerOptions are supported",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test-ci": "jest --runInBand --coverage",
"watch": "webpack --watch",
"build": "webpack -p",
"prepublishOnly": "yarn test-ci && yarn build",
"version": "yarn build && git add dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzarcon/default-passive-events.git"
},
"author": "zzarcon",
"license": "MIT",
"bugs": {
"url": "https://github.com/zzarcon/default-passive-events/issues"
},
"homepage": "https://github.com/zzarcon/default-passive-events#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"jest": "^21.2.1",
"webpack": "^3.8.1"
},
"files": [
"dist/",
"src/",
"LICENSE",
"yarn.lock"
],
"jest": {
"resetMocks": true
},
"dependencies": {}
}