forked from XervoIO/demeteorizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "demeteorizer",
"description": "Converts a Meteor app into a \"standard\" Node.js application.",
"keywords": [
"meteor"
],
"version": "2.3.1",
"author": "Modulus <[email protected]>",
"maintainers": [
"Brandon Cannaday <[email protected]>",
"Matt Hernandez <[email protected]>"
],
"contributors": [
"Brandon Cannaday <[email protected]>",
"Bret Fisher <[email protected]>",
"Matt Hernandez <[email protected]>",
"Tarang Patel <[email protected]>",
"Vincil Bishop <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OnModulus/demeteorizer"
},
"dependencies": {
"async": "0.2.10",
"commander": "1.1.1",
"rimraf": "2.3.2",
"semver": "3.0.1"
},
"devDependencies": {
"istanbul": "0.3.2",
"jshint": "2.5.5",
"mocha": "1.21.4",
"proxyquire": "1.0.1",
"should": "4.0.4",
"sinon": "1.10.3"
},
"scripts": {
"test": "make test"
},
"main": "./lib/demeteorizer",
"bin": {
"demeteorizer": "./bin/demeteorizer"
},
"preferGlobal": true,
"engines": {
"node": ">= 0.8.0"
}
}