aboutsummaryrefslogtreecommitdiff
path: root/node_modules/strip-dirs/package.json
blob: 7f1a3db1cb6a6b99436f726a9942a8e4f88947bb (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
{
  "name": "strip-dirs",
  "version": "2.1.0",
  "description": "Remove leading directory components from a path, like tar's --strip-components option",
  "repository": "shinnn/node-strip-dirs",
  "author": "Shinnosuke Watanabe (https://github.com/shinnn)",
  "files": [
    "index.js"
  ],
  "scripts": {
    "pretest": "eslint --fix --format=codeframe index.js test.js",
    "test": "node --throw-deprecation --track-heap-objects test.js | tap-spec",
    "coverage": "istanbul cover test.js"
  },
  "license": "MIT",
  "keywords": [
    "filepath",
    "file-path",
    "path",
    "dir",
    "directory",
    "strip",
    "strip-components"
  ],
  "dependencies": {
    "is-natural-number": "^4.0.1"
  },
  "devDependencies": {
    "@shinnn/eslint-config-node": "^3.0.0",
    "eslint": "^3.10.0",
    "istanbul": "^0.4.5",
    "istanbul-coveralls": "^1.0.3",
    "tap-spec": "^4.1.1",
    "tape": "^4.6.2"
  },
  "eslintConfig": {
    "extends": "@shinnn/node"
  }
}