-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "browserstack-screenshot-loader",
"version": "0.0.1",
"main": "index.js",
"repository": "git@github.com:tomof/browserstack-screenshot-loader.git",
"author": "tomof <fffjt007@gmail.com>",
"license": "MIT",
"bin": "./dist/bin/cli.js",
"dependencies": {
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"browserstack": "^1.5.0",
"chalk": "^2.1.0",
"commander": "^2.11.0",
"eslint": "^4.9.0",
"mkdirp": "^0.5.1",
"node-emoji": "^1.8.1",
"progress": "^2.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"jest": "^21.2.1"
},
"scripts": {
"dev": "node dist/bin/cli.js",
"dev-help": "node dist/bin/cli.js --help",
"watch": "babel ./src --watch --out-dir ./dist",
"build": "babel ./src --out-dir ./dist",
"lint": "eslint ./src",
"test": "jest ./src"
}
}