-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.36 KB
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
{
"name": "adformify",
"version": "1.1.0",
"description": "Adform studio uploader to automatize upload/download process",
"main": "dist",
"scripts": {
"dev": "npm run build && node dist --cta=https://www.google.se --tasks=5 --target=./files --delay=0",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elibolonur/adformify.git"
},
"keywords": [
"adform",
"studio",
"uploader"
],
"bin": {
"adformify": "./dist/index.js"
},
"author": "Onur Elibol",
"license": "MIT",
"bugs": {
"url": "https://github.com/elibolonur/adformify/issues"
},
"homepage": "https://github.com/elibolonur/adformify#readme",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"stage-1"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.24.1",
"chalk": "^2.4.0",
"eslint": "^4.19.1",
"nodemon": "^1.18.3",
"rimraf": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"chromedriver": "^2.41.0",
"express": "^4.16.3",
"minimist": "^1.2.0",
"morgan": "^1.9.0",
"selenium-webdriver": "^4.0.0-alpha.1"
}
}