-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@actualwave/event-dispatcher",
"description": "EventDispatcher is a JavaScript class that adds events support to custom objects.",
"version": "1.2.2",
"main": "index.js",
"keywords": [
"event",
"events",
"object",
"dispatch",
"fire",
"subscribe",
"fire",
"handle",
"listener",
"dispatcher",
"addEventListener",
"removeEventListener",
"dispatchEvent"
],
"homepage": "https://github.com/burdiuz/js-event-dispatcher",
"bugs": {
"url": "https://github.com/burdiuz/js-event-dispatcher/issues",
"email": "burdiuz@gmail.com"
},
"license": "MIT",
"author": "Oleg Galaburda <burdiuz@gmail.com> (http://actualwave.com/)",
"repository": {
"type": "git",
"url": "https://github.com/burdiuz/js-event-dispatcher.git"
},
"dependencies": {
"@actualwave/has-own": "^0.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-jest": "^23.2.0",
"chokidar": "^2.0.4",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"husky": "^1.0.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-serve": "^0.6.0",
"rollup-plugin-terser": "^3.0.0"
},
"lint-staged": {
"source/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"babel": {
"env": {
"test": {
"plugins": [
"babel-plugin-transform-es2015-modules-commonjs",
"babel-plugin-transform-flow-strip-types",
"babel-plugin-transform-class-properties",
[
"babel-plugin-transform-object-rest-spread",
{
"useBuiltIns": true
}
]
],
"presets": [
"jest"
]
}
}
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov"
],
"coverageDirectory": "coverage",
"collectCoverageFrom": [
"source/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
],
"modulePathIgnorePatterns": [
"\\/\\.",
".history"
]
},
"scripts": {
"start": "npm run build",
"build": "rollup --config",
"build:watch": "rollup --config --watch \"./source\"",
"lint": "./node_modules/.bin/eslint \"source/**/*.js\"",
"flow": "./node_modules/.bin/flow",
"server": "rollup --config rollup.serve.js",
"test": "jest --colors",
"test:watch": "jest --colors --watch",
"lint-staged": "lint-staged",
"precommit": "npm run build && npm run test && npm run lint-staged"
}
}