UNPKG

994 BJSONView Raw
1{
2 "name": "nwrun",
3 "version": "0.0.16",
4 "main": "lib/runner.js",
5 "description": "Hacky runner for Nightwatch CLI",
6 "scripts": {
7 "dev": "jasmine-node spec --coffee --verbose --autoTest --watchFolders lib",
8 "dev:lint": "eslint lib",
9 "dev:spec": "jasmine-node spec --coffee --noStackTrace --captureExceptions",
10 "cover": "istanbul cover --root lib --x '**/spec/**' -- jasmine-node --coffee spec",
11 "cover:up": "codecov --file=coverage/lcov.info --disable=gcov -e TRAVIS_NODE_VERSION",
12 "test": "npm run dev:lint && npm run dev:spec"
13 },
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/gextech/nwrun"
17 },
18 "publishConfig": {
19 "registry": "http://registry.npmjs.org"
20 },
21 "license": "MIT",
22 "dependencies": {
23 "chromedriver": "^2.21.2",
24 "nightwatch": ">=0.8.18"
25 },
26 "devDependencies": {
27 "codecov": "^1.0.1",
28 "eslint": "^2.6.0",
29 "istanbul": "^0.4.2",
30 "jasmine-node": "^2.0.0-beta4",
31 "minimist": "^1.2.0"
32 }
33}