This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 1.99 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
{
"name": "mout",
"description": "Modular Utilities",
"version": "1.2.2",
"homepage": "http://moutjs.com/",
"author": "Miller Medeiros <contact@millermedeiros.com> (http://blog.millermedeiros.com)",
"contributors": [
"Adam Nowotny",
"André Cruz <amdfcruz@gmail.com>",
"Conrad Zimmerman (http://www.conradz.com)",
"Friedemann Altrock <frodenius@gmail.com>",
"Igor Almeida <igor.p.almeida@gmail.com>",
"Jarrod Overson (http://jarrodoverson.com)",
"Mathias Paumgarten <mail@mathias-paumgarten.com>",
"Zach Shipley"
],
"keywords": [
"utilities",
"functional",
"amd-utils",
"stdlib"
],
"repository": {
"type": "git",
"url": "git://github.com/mout/mout.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mout/mout/issues/"
},
"main": "./index.js",
"scripts": {
"pretest": "node build pkg",
"test": "istanbul test tests/runner.js --hook-run-in-context"
},
"directories": {
"doc": "./doc"
},
"devDependencies": {
"commander": "~2.16.0",
"handlebars": "~4.1.2",
"istanbul": "~0.4.5",
"jasmine-node": "^1.15.0",
"jshint": "~2.9.5",
"mdoc": "~0.5.3",
"nodefy": "~0.2.2",
"regenerate": "~1.4.0",
"requirejs": "~2.3.5",
"rimraf": "~2.6.2",
"rocambole": "~0.7.0"
},
"testling": {
"preprocess": "node build testling",
"browsers": {
"ie": [
7,
8,
9,
10
],
"firefox": [
17,
"nightly"
],
"chrome": [
23,
"canary"
],
"opera": [
12,
"next"
],
"safari": [
5.1,
6
],
"iphone": [
6
],
"ipad": [
6
]
},
"scripts": [
"tests/lib/jasmine/jasmine.js",
"tests/lib/jasmine/jasmine.async.js",
"tests/lib/jasmine/jasmine-tap.js",
"tests/lib/requirejs/require.js",
"tests/testling/src.js",
"tests/testling/specs.js",
"tests/runner.js"
]
}
}