forked from domvm/domvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
43
44
45
46
47
48
49
50
51
52
{
"name": "domvm",
"description": "DOM ViewModel - A thin, fast, dependency-free vdom view layer",
"keywords": [
"virtual-dom",
"mvvm",
"view-model",
"framework"
],
"license": "MIT",
"homepage": "https://github.com/domvm/domvm",
"author": "Leon Sorokin <leeoniya@gmail.com>",
"version": "3.4.12",
"main": "./dist/full/domvm.full.cjs.js",
"module": "./dist/full/domvm.full.es.js",
"jsnext:main": "./dist/full/domvm.full.es.js",
"scripts": {
"test": "nyc mocha test/src/*.js",
"coverage": "nyc report --reporter=text-summary --reporter=text > ./test/coverage.txt",
"watch": "node watch.js",
"build": "node build.js"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist"
],
"nyc": {
"require": [
"./test/init-spec.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/domvm/domvm.git"
},
"devDependencies": {
"mocha": "^7.1.1",
"node-watch": "^0.6.3",
"nyc": "^15.0.1",
"rollup": "^2.6.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-replace": "^2.2.0",
"terser": "^4.6.11",
"undom": "^0.4.0"
},
"bugs": {
"url": "https://github.com/domvm/domvm/issues"
},
"dependencies": {}
}