-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.74 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
{
"name": "es6-emitter",
"description": "Smallest event emitter for JavaScript with all the power of ES6 Maps!",
"homepage": "https://documentup.com/kutyel/es6-emitter",
"version": "1.0.1",
"main": "dist/es6-emitter.js",
"umd:main": "dist/es6-emitter.umd.js",
"module": "dist/es6-emitter.mjs",
"source": "index.js",
"author": {
"email": "[email protected]",
"name": "Flavio Corpa",
"url": "http://flaviocorpa.com"
},
"files": [
"index.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kutyel/es6-emitter.git"
},
"bugs": {
"url": "https://github.com/kutyel/es6-emitter/issues"
},
"keywords": [
"es6",
"eventemitter",
"events",
"pubsub"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"coveralls": "latest",
"git-dirty": "latest",
"jest": "latest",
"lodash": "latest",
"merge": "latest",
"microbundle": "latest",
"prettier-standard": "latest",
"standard": "latest"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"build": "microbundle -o dist",
"dev": "microbundle watch",
"clean": "rm -rf node_modules",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "standard",
"prelint": "npm run pretty",
"pretest": "npm run lint",
"pretty": "prettier-standard index.js src/**/*.js test/**/*.js bin/**/*.js",
"test": "jest --coverage"
},
"license": "MIT",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
}
}