-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "demeteorizer",
"description": "Converts a Meteor app into a \"standard\" Node.js application.",
"keywords": [
"meteor"
],
"version": "4.3.0",
"author": "Modulus <admin@modulus.io>",
"maintainers": [
"Francesca Varney <fran@modulus.io>",
"Matt Hernandez <matt@modulus.io>"
],
"contributors": [
"Brandon Cannaday <brandon@modulus.io>",
"Bret Fisher <me@bfish.us>",
"Matt Hernandez <matt@modulus.io>",
"Tarang Patel <t@ran.gg>",
"Vincil Bishop <vincil.bishop@Vbishop.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/OnModulus/demeteorizer"
},
"dependencies": {
"commander": "2.9.0",
"cross-spawn": "5.1.0",
"fs-extra": "2.0.0",
"hoek": "4.x.x",
"semver": "5.1.0"
},
"devDependencies": {
"code": "4.0.0",
"lab": "12.1.0",
"proxyquire": "1.7.11",
"sinon": "1.17.7",
"standard": "9.0.0"
},
"scripts": {
"pretest": "standard",
"test": "lab --threshold 100",
"gen-coverage": "lab --coverage --reporter lcov --output coverage/lcov.info"
},
"main": "./lib/demeteorizer",
"bin": {
"demeteorizer": "./bin/demeteorizer"
},
"preferGlobal": true,
"engines": {
"node": ">=4",
"npm": ">=3.10.8"
}
}