aboutsummaryrefslogtreecommitdiff
path: root/node_modules/flagged-respawn/package.json
blob: f3a88ec878875606c5069a2aa093c32517fd961a (plain)
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
{
  "name": "flagged-respawn",
  "description": "A tool for respawning node binaries when special flags are present.",
  "version": "1.0.0",
  "homepage": "https://github.com/js-cli/js-flagged-respawn",
  "author": {
    "name": "Tyler Kellen",
    "url": "http://goingslowly.com/"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/js-cli/js-flagged-respawn.git"
  },
  "bugs": {
    "url": "https://github.com/js-cli/js-flagged-respawn/issues"
  },
  "license": "MIT",
  "scripts": {
    "lint": "jshint index.js lib/ && jscs index.js lib/",
    "respawn": "node test/bin/respawner --harmony test",
    "nospawn": "node test/bin/respawner test",
    "test": "npm run lint && mocha -R spec test",
    "cover": "nyc --reporter=lcov --reporter=text-summary npm test"
  },
  "main": "index.js",
  "files": [
    "index.js",
    "lib/"
  ],
  "engines": {
    "node": ">= 0.8.0"
  },
  "keywords": [
    "respawn flags"
  ],
  "devDependencies": {
    "chai": "^3.5.0",
    "jscs": "^3.0.7",
    "jshint": "^2.9.5",
    "mocha": "^3.5.3",
    "nyc": "^11.3.0",
    "v8flags": "^3.0.1"
  }
}