-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "nanobus",
"description": "Tiny message bus",
"version": "4.5.0",
"browser": {
"assert": "nanoassert"
},
"dependencies": {
"nanoassert": "^1.1.0",
"nanotiming": "^7.2.0",
"remove-array-items": "^1.0.0"
},
"devDependencies": {
"browserify": "^15.2.0",
"dependency-check": "^3.0.0",
"nanobench": "^2.1.0",
"nyc": "^11.4.1",
"standard": "^10.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-run": "^6.0.1"
},
"keywords": [
"emit",
"event"
],
"license": "MIT",
"repository": "choojs/nanobus",
"scripts": {
"bench": "node bench.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"deps": "dependency-check . && dependency-check . --extra --no-dev -i nanoassert",
"start": "node .",
"lint": "standard",
"test:browser": "browserify test.js | tape-run | tap-spec",
"test:node": "nyc node test.js | tap-spec",
"tests-only": "npm run test:node && npm run test:browser",
"test": "npm run deps && npm run lint && npm run tests-only"
}
}