This repository has been archived by the owner on Jun 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
117 lines (117 loc) · 3.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "mercury",
"version": "14.2.0",
"description": "A truly modular frontend framework",
"keywords": [
"framework",
"frontend",
"virtual",
"react",
"modular",
"web"
],
"author": "Raynos <[email protected]>",
"repository": "git://github.com/Raynos/mercury.git",
"main": "index.js",
"homepage": "https://github.com/Raynos/mercury",
"contributors": [
{
"name": "Raynos"
},
{
"name": "Matt-Esch"
},
{
"name": "neonstalwart"
},
{
"name": "parshap"
},
{
"name": "nrw"
}
],
"bugs": {
"url": "https://github.com/Raynos/mercury/issues",
"email": "[email protected]"
},
"dependencies": {
"dom-delegator": "^13.0.1",
"geval": "^2.1.1",
"main-loop": "^3.1.0",
"observ": "^0.2.0",
"observ-array": "^3.1.0",
"observ-struct": "^5.0.1",
"observ-varhash": "^1.0.2",
"value-event": "^5.0.0",
"vdom-thunk": "^3.0.0",
"virtual-dom": "^2.1.1",
"xtend": "^4.0.0",
"http-hash-router": "~1.1.0"
},
"devDependencies": {
"backbone": "^1.1.2",
"browserify": "^3.38.0",
"callify": "^0.2.0",
"coveralls": "^2.11.1",
"cuid": "^1.2.1",
"disc": "^1.3.0",
"function-bind": "^0.1.0",
"global": "^4.2.1",
"hash-router": "^0.4.0",
"immutable": "^3.6.2",
"indexhtmlify": "^1.2.0",
"istanbul": "^0.2.16",
"javascript-editor": "^1.0.0",
"jquery": "^2.1.4",
"json-globals": "^0.2.1",
"lint-trap": "^1.0.1",
"marked": "^0.3.2",
"mercury-jsxify": "^0.14.0",
"min-document": "^2.9.0",
"next-tick": "^0.2.2",
"node-hook": "^0.1.0",
"opn": "^1.0.1",
"pre-commit": "0.0.7",
"process": "^0.7.0",
"raf": "^2.0.1",
"rcss": "^0.1.5",
"require-modify": "^0.1.0",
"rimraf": "^2.2.8",
"route-map": "^0.1.0",
"run-browser": "^1.3.1",
"run-parallel": "^1.0.0",
"run-series": "^1.0.2",
"st": "^0.4.1",
"synthetic-dom-events": "git://github.com/Raynos/synthetic-dom-events",
"tap-spec": "^0.2.0",
"tape": "^2.13.2",
"valid-email": "0.0.1",
"vdom-to-html": "~2.2.0",
"vdom-virtualize": "0.0.5",
"vtree-select": "^1.0.1",
"weakmap-shim": "^1.1.0",
"zuul": "^1.9.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/Raynos/mercury/raw/master/LICENSE"
}
],
"scripts": {
"disc": "browserify index.js --full-paths | discify > disc.html && opn disc.html",
"lint": "lint-trap",
"test": "npm run lint && node test/index.js | tap-spec",
"travis-test": "npm run phantom && npm run cover && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0) && zuul -- test/index.js",
"phantom": "run-browser test/index.js -b | tap-spec",
"browser": "run-browser test/index.js",
"cover": "istanbul cover --report html --print detail ./test/index.js",
"view-cover": "istanbul report html && opn coverage/index.html",
"build": "node bin/build.js",
"examples": "node bin/example-server.js",
"dist": "node bin/dist.js",
"dist-publish": "npm run dist && git add dist/mercury.js && git commit -m 'dist' && npm publish",
"modules-docs": "node bin/modules-docs.js"
}
}