forked from egoist/eventstop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 845 Bytes
/
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
{
"name": "eve",
"version": "3.0.0",
"description": "A minimal event library as a ES module.",
"module": "src/index.mjs",
"repository": {
"url": "JesusCrow/eve",
"type": "git"
},
"scripts": {
"test": "NODE_ENV=test tyu",
"lint": "xo src/*.mjs",
"build": "bili --format umd --compress --module-name eventstop",
"prepublish": "npm t"
},
"contributors": [
{
"name": "egoist",
"email": "[email protected]"
},
{
"name": "JesusCrow",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"bili": "^0.10.0",
"tyu": "^1.0.6",
"xo": "^0.17.1"
},
"xo": {
"extensions": [
"mjs"
],
"space": 2,
"semicolon": false,
"esnext": true,
"rules": {
"no-return-assign": 0
},
"env": "jest"
}
}