-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (54 loc) · 1.78 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
{
"name": "meteor-launch",
"version": "0.3.3",
"description": "Automating meteor builds to the AppStore, TestFlight, Hockey, Google Play, and more later.",
"main": "./lib/index.js",
"scripts": {
"build": "babel src -d lib -s",
"watch": "babel src --watch -d lib",
"lint": "eslint src",
"pretest": "npm run build && npm link",
"test": "mocha --reporter spec --full-trace lib/__test/index.js",
"posttest": "npm run lint",
"coverage": "istanbul cover -x '**/__test/**' ./node_modules/mocha/bin/_mocha -- --reporter dot --full-trace lib/__test/index.js",
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info && npm run send:coverage",
"send:coverage": "scripts/fixMap.sh && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build:book": "gitbook build && rm -rf docs && mv _book docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewSpring/meteor-launch.git"
},
"bin": {
"launch": "./lib/index.js"
},
"author": "johnthepink",
"collaborators": [
"jbaxleyiii",
"newspring"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/NewSpring/meteor-launch/issues"
},
"homepage": "https://github.com/NewSpring/meteor-launch#readme",
"dependencies": {
"rimraf": "^2.5.4",
"underscore": "^1.8.3",
"vorpal": "^1.11.4"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.13.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"remap-istanbul": "^0.7.0"
}
}