-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 986 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 986 Bytes
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
{
"name": "psmitter",
"version": "1.0.0",
"description": "Usefull event emitter for Browser",
"main": "./psmitter.js",
"scripts": {
"lint": "eslint ./Psmitter.js",
"build": "webpack",
"prebuild": "npm run lint",
"test": "tape ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fernandops26/Psmitter.git"
},
"keywords": [
"events",
"emitter",
"psmitter",
"listener",
"browser"
],
"author": "Fernando Palacios",
"license": "MIT",
"bugs": {
"url": "https://github.com/fernandops26/Psmitter/issues"
},
"homepage": "https://github.com/fernandops26/Psmitter#readme",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"tape": "4.9.1",
"webpack": "4.20.2",
"webpack-cli": "3.1.2"
}
}