1 | {
|
2 | "name": "app-root-path",
|
3 | "version": "3.1.0",
|
4 | "description": "Determine an app's root path from anywhere inside the app",
|
5 | "main": "index.js",
|
6 | "browser": "browser-shim.js",
|
7 | "scripts": {
|
8 | "test": "nyc mocha -R spec",
|
9 | "report-coverage": "npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
10 | "release": "semantic-release pre && npm publish && semantic-release post",
|
11 | "semantic-release": "semantic-release",
|
12 | "commit": "npx git-cz"
|
13 | },
|
14 | "repository": {
|
15 | "type": "git",
|
16 | "url": "https://github.com/inxilpro/node-app-root-path.git"
|
17 | },
|
18 | "keywords": [
|
19 | "root",
|
20 | "path",
|
21 | "utility",
|
22 | "util",
|
23 | "node",
|
24 | "module",
|
25 | "modules",
|
26 | "node_modules",
|
27 | "require",
|
28 | "app"
|
29 | ],
|
30 | "author": "Chris Morrell <http://cmorrell.com>",
|
31 | "license": "MIT",
|
32 | "bugs": {
|
33 | "url": "https://github.com/inxilpro/node-app-root-path/issues"
|
34 | },
|
35 | "homepage": "https://github.com/inxilpro/node-app-root-path",
|
36 | "devDependencies": {
|
37 | "codecov": "^3.6.1",
|
38 | "coveralls": "^3.0.7",
|
39 | "cracks": "^3.1.2",
|
40 | "cz-conventional-changelog": "^3.0.2",
|
41 | "ghooks": "^2.0.4",
|
42 | "istanbul": "^0.3.4",
|
43 | "mocha": "^6.2.2",
|
44 | "mocha-lcov-reporter": "0.0.1",
|
45 | "mockery": "^1.7.0",
|
46 | "nyc": "^14.1.1",
|
47 | "semantic-release": "^15.13.28",
|
48 | "validate-commit-msg": "^2.14.0"
|
49 | },
|
50 | "engines": {
|
51 | "node": ">= 6.0.0"
|
52 | },
|
53 | "release": {
|
54 | "branch": "master"
|
55 | },
|
56 | "config": {
|
57 | "ghooks": {
|
58 | "commit-msg": "validate-commit-msg",
|
59 | "post-merge": "npm install",
|
60 | "post-rewrite": "npm install"
|
61 | },
|
62 | "commitizen": {
|
63 | "path": "./node_modules/cz-conventional-changelog"
|
64 | }
|
65 | }
|
66 | }
|