-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
89 lines (89 loc) · 2.69 KB
/
package.json
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "pkglink",
"version": "1.1.1",
"description": "Space saving Node.js package hard linker. pkglink locates common JavaScript/Node.js packages from your node_modules directories and hard links the package files so they share disk space.",
"main": "build-lib/index.js",
"bin": {
"pkglink": "bin/pkglink.js",
"pkglink_low": "build-lib/cli.js"
},
"scripts": {
"clean": "mkdirp build-lib && rimraf build-lib/*",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir build-lib",
"lint": "eslint --ext .js --ext .jsx src",
"prebuild": "npm run clean",
"postbuild": "echo \"Finished\"",
"prepublish": "run-s prod-build lint test",
"prewatch": "npm run clean",
"pretest": "cd \"fixtures/projects/foo1\" && npm ci && cd -",
"prod-build": "npm run build --production",
"start": "npm run watch",
"test": "run-s test:*",
"test:cli-basic-direct": "cd fixtures && bash cli-test-basic.bash \"../bin/pkglink.js\"",
"test:cli-basic-low": "cd fixtures && bash cli-test-basic.bash \"../build-lib/cli.js\"",
"test:mocha": "cross-env BABEL_ENV=test mocha --require @babel/register \"src/**/*.mocha.js*\"",
"watch": "run-p -c watch:*",
"watch:babel": "npm run build -- -w",
"watch:mocha": "npm run test:mocha -- -w"
},
"author": "Jeff Barczewski",
"repository": {
"type": "git",
"url": "http://github.com/jeffbski/pkglink.git"
},
"bugs": {
"url": "http://github.com/jeffbski/pkglink/issues"
},
"engines": {
"node": ">=4"
},
"license": "MIT",
"dependencies": {
"@hapi/joi": "^17.1.1",
"babel-eslint": "^10.1.0",
"bluebird": "^3.7.2",
"chalk": "^1.1.3",
"cli-truncate": "^0.2.1",
"core-js": "^3.9.1",
"fs-extra-promise": "^0.4.1",
"minimist": "^1.2.5",
"numeral": "^1.5.3",
"ramda": "^0.27.0",
"readdirp": "^2.1.0",
"rxjs": "^5.0.0-rc.1",
"single-line-log": "^1.1.2",
"strip-ansi": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/register": "^7.13.8",
"cross-env": "^3.1.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.0.1",
"expect": "^1.20.2",
"mkdirp": "^1.0.4",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"keywords": [
"package",
"link",
"linking",
"hard link",
"npm",
"modules",
"sharing",
"consolidating",
"space"
]
}