-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.06 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
41
42
{
"name": "mutant",
"version": "3.29.0",
"description": "Create observables and map them to DOM elements. Massively inspired by hyperscript and observ-*. No virtual dom, just direct observable bindings. Unnecessary garbage collection is avoided by using mutable objects instead of blasting immutable junk all over the place.",
"scripts": {
"test": "browserify -d test/*.js | tape-run | tap-spec"
},
"author": "Matt McKegg",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mmckegg/mutant.git"
},
"bugs": {
"url": "https://github.com/mmckegg/mutant/issues"
},
"license": "MIT",
"keywords": [
"observ",
"realtime",
"computed",
"mutable",
"mutate",
"dom",
"gc",
"hyperscript",
"frp",
"graph"
],
"dependencies": {
"browser-split": "0.0.1",
"xtend": "^4.0.1"
},
"devDependencies": {
"browserify": "^13.1.1",
"setimmediate": "^1.0.5",
"source-map-support": "^0.5.9",
"tap-spec": "^5.0.0",
"tape": "^4.6.3",
"tape-run": "^2.1.4"
}
}