-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
40 lines (40 loc) · 961 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
{
"name": "nanomorph",
"version": "5.4.3",
"description": "Hyper fast diffing algorithm for real DOM nodes",
"main": "index.js",
"scripts": {
"deps": "dependency-check . && dependency-check . --extra --no-dev -i nanoassert",
"test": "standard && npm run deps && browserify test/index.js | tape-run",
"test:fast": "browserify test/diff.js | tape-run",
"start": "bankai start --debug test/diff.js"
},
"repository": "yoshuawuyts/nanomorph",
"keywords": [
"dom",
"diff",
"tiny",
"morphdom",
"choo",
"bel",
"nanohtml",
"yo-yo"
],
"license": "MIT",
"dependencies": {
"nanoassert": "^1.1.0"
},
"browser": {
"assert": "nanoassert"
},
"devDependencies": {
"bankai": "^7.6.2",
"browserify": "^16.5.0",
"dependency-check": "^2.5.1",
"math-random-seed": "^1.0.0",
"nanohtml": "^1.4.0",
"standard": "^10.0.3",
"tape": "^4.13.0",
"tape-run": "^6.0.1"
}
}