-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1005 Bytes
/
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
{
"name": "ujpm",
"version": "0.0.0",
"description": "Universal JavaScript Package Manager",
"keywords": [
"package-manager",
"esm"
],
"repository": "https://github.com/vanillaes/ujpm.git",
"author": "Evan Plaice <evanplaice@gmail.com> (http://evanplaice.com/)",
"license": "MIT",
"type": "module",
"bin": {
"ujpm": "bin/ujpm.js"
},
"scripts": {
"test": "tape-es",
"test:watch": "tape-watch-es",
"lint": "esmtk lint",
"package": "npx rimraf package && npm pack | tail -n 1 | xargs tar -xf",
"preversion": "npm test && npm run lint",
"postversion": "git push --follow-tags"
},
"dependencies": {
"commander": "^2.20.3",
"node-gzip": "^1.1.2",
"rimraf": "^2.7.1",
"shasum": "^1.0.2",
"stream-buffers": "^3.0.2",
"tar-fs": "^2.1.1"
},
"devDependencies": {
"@vanillaes/mock-console": "^1.1.5",
"esmtk": "^0.5.13",
"mock-fs": "^4.14.0",
"tape-es": "^1.2.16"
},
"engines": {
"node": ">=14"
}
}