-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name" : "@osmium/crypt",
"description" : "Osmium crypt library",
"license" : "MIT",
"author" : {
"name" : "Vasiliy Isaichkin",
"email": "[email protected]"
},
"repository" : "https://github.com/osmiumjs/crypt",
"version" : "0.7.1",
"scripts" : {
"compile" : "tsc && webpack",
"compress" : "terser --compress --ecma 2015 -o ./dist/index.min.js -- ./dist/index.min.js",
"test" : "mocha tests",
"clean" : "rimraf dist defs",
"clean:full" : "yarn run clean && rimraf node_modules",
"build" : "yarn run clean && yarn run compile && yarn run test",
"prepublishOnly": "yarn run build"
},
"main" : "./dist/index.js",
"types" : "./defs/index.d.ts",
"dependencies" : {
"@osmium/coder" : "0.7.1",
"@types/elliptic": "~6.4.14",
"elliptic" : "~6.5.4"
},
"devDependencies": {
"@types/mocha" : "~10.0.0",
"@types/node" : "~18.11.4",
"buffer" : "~6.0.3",
"chai" : "^4.3.6",
"crypto-browserify": "~3.12.0",
"mocha" : "~10.1.0",
"rimraf" : "~3.0.2",
"stream-browserify": "~3.0.0",
"terser" : "~5.15.1",
"ts-loader" : "~9.4.1",
"typescript" : "~4.8.4",
"webpack" : "~5.74.0",
"webpack-cli" : "~4.10.0"
}
}