forked from transloadit/transloadify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.28 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
{
"name": "transloadify",
"version": "1.0.0",
"description": "CLI client for transloadit",
"scripts": {
"fix": "eslint src test --fix",
"lint": "eslint src test",
"web:deploy": "lanyon deploy",
"web:build:production": "LANYON_ENV=production lanyon build",
"web:build": "lanyon build",
"web:encrypt": "lanyon encrypt",
"web:install": "lanyon install",
"web:serve:production": "LANYON_ENV=production lanyon serve",
"web:start": "lanyon start",
"release:major": "env SEMANTIC=major npm run release",
"release:minor": "env SEMANTIC=minor npm run release",
"release:patch": "env SEMANTIC=patch npm run release",
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && npm run build && git push && git push --tags && npm publish",
"test": "npm-run-all build mocha",
"mocha": "NODE_ENV=test mocha --compilers js:babel-register --reporter spec test/",
"build": "./node_modules/babel-cli/bin/babel.js src/ -d lib/",
"prestart": "npm run build",
"start": "npm run web:start",
"prepublish": "npm run build",
"postinstall": "install-completion bash _transloadify"
},
"lanyon": {
"projectDir": "website",
"prebuild": "./_scripts/inject.sh",
"contentScandir": "../",
"contentIgnore": [
"website/*.md"
]
},
"eslintConfig": {
"extends": "standard",
"env": {
"node": true,
"mocha": true
}
},
"author": "Adrian Sinclair <adrian@transloadit.com>",
"license": "MIT",
"bin": "./bin/cmd.js",
"main": "./lib/index.js",
"files": [
"lib",
"bin",
"_transloadify"
],
"dependencies": {
"node-watch": "^0.4.1",
"q": "1.4.1",
"recursive-readdir": "2.1.0",
"shell-completion": "0.0.5",
"transloadit": "2.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "3.5.0",
"eslint": "^3.11.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"fakefile": "^0.0.8",
"image-size": "0.5.0",
"lanyon": "0.0.86",
"mocha": "^3.2.0",
"npm-run-all": "^3.1.2",
"request": "2.79.0",
"rimraf": "2.5.4",
"source-map-support": "^0.4.6"
},
"babel": {
"sourceMaps": "inline",
"presets": [
"es2015"
]
}
}