-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "amazon-api-bot",
"version": "1.1.3",
"description": "Automagically generate amazon product advertising api credentials!",
"repository": "https://github.com/Corei13/amazon-api-bot",
"bin": {
"run-amazon-api-bot": "lib/cli.js"
},
"scripts": {
"node": "node_modules/.bin/babel-node",
"watch": "node_modules/.bin/babel-watch",
"lint": "node_modules/.bin/eslint .",
"flow": "node_modules/flow-bin/cli.js",
"build": "node_modules/.bin/babel src/ -d lib/ --copy-files",
"prepush": "npm run build"
},
"author": "Dhananjoy Biswas",
"keywords": [
"aws",
"amazon",
"product",
"advertising",
"api",
"bot"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.10.3",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-watch": "^2.0.2",
"eslint": "^3.1.1",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.4.0",
"flow-bin": "^0.32.0"
},
"dependencies": {
"babel-preset-node6": "^11.0.0",
"body-parser": "^1.17.1",
"chalk": "^1.1.3",
"chance": "^1.0.9",
"chrome-launcher": "^0.8.1",
"chrome-remote-interface": "^0.23.2",
"express": "^4.15.2",
"ngrok": "^2.2.23",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"twilio": "^3.3.0"
},
"babel": {
"presets": [
"node6"
],
"plugins": [
"transform-object-rest-spread",
"transform-flow-strip-types",
"transform-class-properties",
"transform-es2015-modules-commonjs"
]
}
}