-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "npm-filepack",
"version": "0.5.1",
"description": "Install dependencies from built tarballs with ease",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RecuencoJones/npm-filepack.git"
},
"homepage": "https://github.com/npm/rfcs/pull/150",
"bugs": {
"url": "https://github.com/RecuencoJones/npm-filepack/issues"
},
"main": "./lib/index.js",
"bin": {
"filepack": "./bin/filepack",
"npm-filepack": "./bin/npm-filepack"
},
"scripts": {
"build": "tsc",
"clean": "rimraf **/lib/**/*.js **/*.tgz tests/**/package-lock.json tests/**/node_modules",
"lint": "eslint --ext .ts lib bin/* tests",
"test": "npm run test:filepack && npm run test:npm-filepack",
"test:filepack": "./bin/filepack --prefix tests/filepack/root-package",
"test:npm-filepack": "./bin/npm-filepack --prefix tests/npm-filepack/root-package"
},
"dependencies": {
"npmlog": "4.1.2",
"yargs": "15.3.1"
},
"devDependencies": {
"@types/node": "14.0.5",
"@types/npmlog": "4.1.2",
"@types/yargs": "15.0.5",
"@typescript-eslint/eslint-plugin": "3.0.1",
"@typescript-eslint/parser": "3.0.1",
"eslint": "7.1.0",
"rimraf": "3.0.2",
"typescript": "3.9.3"
},
"keywords": [
"npm-install",
"npm-prepack",
"npm-pack",
"tarball"
]
}