-
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) · 985 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 985 Bytes
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": "cast-cli",
"version": "0.4.1",
"description": "Set and get state of a web app",
"bin": {
"cast": "lib/cast.js"
},
"scripts": {
"build": "babel src -d lib",
"pretest": "npm run build",
"test": "mocha --compilers js:babel-register --require ./test/test_helper.js --recursive test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quasimatic/cast-cli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/quasimatic/cast-cli/issues"
},
"homepage": "https://github.com/quasimatic/cast-cli#readme",
"dependencies": {
"command-line-args": "^4.0.4",
"glance-webdriver": "0.8.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"es6-promise": "^4.1.0",
"mocha": "^3.3.0"
}
}