-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 871 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
{
"name": "eventstop",
"version": "2.1.0",
"description": "A minimal event library for Node.js and browser.",
"repository": {
"url": "egoist/eventstop",
"type": "git"
},
"main": "dist/eventstop.js",
"files": [
"dist"
],
"scripts": {
"test": "NODE_ENV=test ava && npm run lint && npm run build",
"lint": "xo src/*.js",
"build": "bili --format umd --compress --module-name eventstop",
"prepublish": "npm t"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"babel-preset-stage-2": "^6.18.0",
"babel-register": "^6.18.0",
"bili": "^0.10.0",
"xo": "^0.17.1"
},
"ava": {
"require": [
"babel-register"
]
},
"xo": {
"space": 2,
"semicolon": false,
"esnext": true,
"rules": {
"no-return-assign": 0
}
}
}