-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 2.22 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
{
"name": "transloadify",
"version": "1.0.0",
"description": "CLI client for transloadit",
"packageManager": "yarn@3.6.0+sha224.19e47520fa56c6146388fdeb438d9dcf6630c3f277a2e1180995c3bb",
"engines": {
"node": ">= 16",
"yarn": "3.6.0"
},
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src/ -d lib/",
"fix:formatting": "prettier --write .",
"fix:js": "eslint src test --fix",
"fix": "npm-run-all fix:*",
"lint:formatting": "prettier --check .",
"lint:js": "eslint src test",
"lint": "npm-run-all --parallel lint:*",
"mocha": "NODE_ENV=test mocha --compilers js:babel-register --reporter spec test/",
"postinstall": "install-completion bash _transloadify",
"prepublish": "npm run build",
"prestart": "npm run build",
"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",
"start": "npm run web:start",
"test": "npm-run-all build mocha"
},
"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": {
"@shopify/prettier-plugin-liquid": "^1.0.6",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"chai": "3.5.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"fakefile": "^0.0.8",
"image-size": "0.5.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.6",
"request": "2.79.0",
"rimraf": "2.5.4",
"source-map-support": "^0.4.6",
"true": "^0.0.4"
},
"babel": {
"sourceMaps": "inline",
"presets": [
"es2015"
]
}
}