-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 940 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
{
"name": "microcomponent",
"description": "Smol event based component library",
"repository": "yoshuawuyts/microcomponent",
"license": "MIT",
"version": "3.1.6",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev",
"start": "beefy example.js",
"test": "standard && npm run deps && browserify test.js | tape-run",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"dependencies": {
"juliangruber-shallow-equal": "^1.0.4",
"nanocomponent": "^5.0.0",
"nanologger": "^1.1.0",
"nanomorph": "^5.0.0"
},
"devDependencies": {
"array-move": "^1.0.0",
"beefy": "^2.1.8",
"bel": "^5.0.0",
"browserify": "^14.3.0",
"dependency-check": "^2.8.0",
"nyc": "^10.1.2",
"standard": "^9.0.2",
"tape": "^4.6.3",
"tape-run": "^3.0.0",
"yo-css": "^1.1.0"
},
"keywords": [
"component",
"event",
"diffing"
]
}