This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.72 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
{
"private": false,
"name": "@panter/catladder-build",
"description": "panter deploy tool for meteor apps",
"version": "1.1.0",
"author": {
"name": "Marco Wettstein",
"email": "maw@panter.ch",
"url": "https://www.panter.ch"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/panter/catladder-build.git"
},
"bugs": "https://github.com/panter/catladder-build/issues",
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-trailing-function-commas": "^6.20.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"glob": "^5.0.15",
"semantic-release": "^15.13.3",
"rimraf": "^2.6.3",
"tape": "^4.2.2",
"travis-deploy-once": "^5.0.11",
"watch": "^1.0.2"
},
"scripts": {
"prepublish": "yarn run compile",
"test": "yarn run lint && babel-node --stage 1 test/harness.js test/**/*.js",
"compile": "rimraf dist && yarn run lint && babel src -s -d dist",
"compile:watch": "watch 'yarn run compile' src; yalc publish",
"lint": "eslint src/**.js",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"main": "./dist/catladder.js",
"bin": {
"catladder-build": "./bin/catladder-build"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"camelcase": "^4.0.0",
"js-yaml": "^3.8.1",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"moment": "^2.17.1",
"prompt": "git+https://github.com/flatiron/prompt.git",
"shell-escape": "^0.2.0",
"ssh-exec": "^2.0.0",
"unique-filename": "^1.1.0",
"update-notifier": "^2.1.0"
},
"publishConfig": {
"access": "public"
}
}