forked from transloadit/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.01 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
{
"name": "transloadit",
"version": "1.9.2",
"description": "Node.js SDK for Transloadit",
"keywords": [
"transloadit",
"encoding",
"transcoding",
"video",
"audio",
"mp3"
],
"author": "Tim Koschuetzki <[email protected]>",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"fakefile": "0.0.8",
"npm-run-all": "2.3.0",
"request": "2.74.0",
"retry": "^0.9.0",
"underscore": "1.8.3"
},
"devDependencies": {
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-es6-promise": "1.1.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-async-to-generator": "6.22.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "6.22.0",
"chai": "3.5.0",
"eslint": "3.15.0",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.1",
"eslint-plugin-standard": "2.0.1",
"gently": "0.10.0",
"localtunnel": "1.8.1",
"mocha": "3.0.0-2",
"should": "10.0.0",
"temp": "0.8.3"
},
"repository": {
"type": "git",
"url": "git://github.com/transloadit/node-sdk.git"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"build:watch": "babel src --watch --source-maps --out-dir lib",
"build": "babel src --source-maps --out-dir lib",
"fix": "eslint . --fix",
"lint": "eslint .",
"mocha": "node_modules/.bin/mocha --compilers js:babel-core/register --require babel-polyfill --reporter spec test/",
"next:update": "next-update --keep true --tldr",
"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\" && git push && git push --tags && npm publish",
"test": "npm-run-all build mocha"
},
"license": "MIT",
"main": "./index"
}