-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "doz",
"version": "5.2.6",
"description": "A JavaScript framework for building UI, almost like writing in VanillaJS.",
"main": "dist/doz.js",
"type": "module",
"sideEffects": false,
"typings": "types/index.d.ts",
"scripts": {
"preversion": "npm run-script test",
"postversion": "npm run-script build && git commit -a -m BUILD && npm publish && git push --follow-tags",
"release:major": "npm version major",
"release:minor": "npm version minor",
"release:patch": "npm version patch",
"build": "rollup --config rollup.config.js",
"test": "mocha test",
"_tmp_test_": "mocha test/props*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dozjs/doz.git"
},
"keywords": [
"front-end",
"html",
"dom",
"javascript",
"framework",
"ui",
"virtual dom",
"v-dom",
"component",
"plugin",
"mixin",
"proxy",
"hooks",
"pre-render",
"server side rendering",
"ssr",
"component-based",
"webcomponent",
"tagged-template-literals",
"template-literals"
],
"author": "Fabio Ricali",
"license": "MIT",
"bugs": {
"url": "https://github.com/dozjs/doz/issues"
},
"homepage": "https://github.com/dozjs/doz#readme",
"devDependencies": {
"bejs": "^2.0.1",
"chai": "^4.3.6",
"doz-router": "^1.12.4",
"global-jsdom": "^8.4.0",
"jsdom": "^19.0.0",
"mocha": "^10.2.0",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-version-injector": "^1.3.3",
"typescript": "^3.1.1"
},
"mocha": {
"require": [
"global-jsdom/register"
],
"timeout": 5000,
"slow": 4000,
"exit": true
}
}