forked from syzer/snappy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "snappy-cli",
"version": "2.0.0",
"description": "Snappy file compression for your system, executable",
"main": "lib/main.ts",
"scripts": {
"build": "rimraf bin/* && rollup -c",
"test": "jest",
"prepublish": "npm run build"
},
"keywords": [
"snappy",
"compression",
"cli"
],
"author": "syzer <[email protected]> (https://github.com/syzer/JS-Spark)",
"contributors": ["alfonso corretti (https://github.com/acorretti)"],
"license": "ISC",
"bin": {
"snappy": "bin/cli.js"
},
"devDependencies": {
"@babel/cli": "~7.13.14",
"@babel/core": "~7.13.14",
"@babel/preset-env": "~7.13.12",
"@rollup/plugin-babel": "~5.3.0",
"@rollup/plugin-commonjs": "~18.0.0",
"@rollup/plugin-node-resolve": "~11.2.1",
"@rollup/plugin-typescript": "~8.2.1",
"@types/jest": "~26.0.22",
"@types/node": "~14.14.37",
"@types/yargs": "~15.0.13",
"@typescript-eslint/eslint-plugin": "~4.20.0",
"babel-jest": "~26.6.3",
"eslint": "~7.23.0",
"jest": "~26.6.3",
"mock-stdin": "~1.0.0",
"rimraf": "~3.0.2",
"rollup-plugin-preserve-shebang": "~1.0.1",
"rollup-plugin-terser": "~7.0.2",
"ts-jest": "~26.5.4",
"ts-node": "~9.1.1",
"typescript": "~4.2.3",
"yargs": "~16.2.0",
"yargs-promise": "~1.1.0"
},
"dependencies": {
"snappy": "~6.3.5"
}
}