-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.55 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
{
"name": "middlemitter",
"version": "2.0.0",
"main": "build/middlemitter.js",
"module": "build/middlemitter.es.js",
"author": "smbeiragh <[email protected]>",
"keywords": [
"middleware",
"event-emitter",
"emitter",
"event",
"async"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smbeiragh/middlemitter.git"
},
"bugs": {
"url": "https://github.com/smbeiragh/middlemitter/issues"
},
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test nyc mocha",
"coverage": "NODE_ENV=test nyc --reporter lcov --reporter text mocha",
"rollup": "NODE_ENV=production rollup -c",
"lint": "eslint src test",
"lint:fix": "eslint src test --fix",
"prepare": "yarn run rollup",
"prepublishOnly": "yarn run rollup"
},
"files": [
"build/middlemitter.js",
"build/middlemitter.es.js"
],
"engines": {
"node": ">=6"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"mocha": "^5.1.1",
"nyc": "^11.7.3",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {}
}