-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name" : "@osmium/coder",
"description" : "Osmium data coder",
"version" : "0.8.3",
"license" : "MIT",
"author" : {
"name" : "Vasiliy Isaichkin",
"email": "[email protected]"
},
"repository" : "https://github.com/osmiumjs/coder",
"main" : "./dist/index.js",
"types" : "./defs/index.d.ts",
"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" : "rimraf dist defs node_modules",
"build" : "npm run clean && npm run compile && npm run compress && npm run test",
"prepublishOnly": "npm run build"
},
"dependencies" : {
"@osmium/is" : "~0.1.2",
"@osmium/iterate": "~0.2.2",
"msgpackr" : "~1.10.0",
"ts-node" : "^10.9.2"
},
"devDependencies": {
"@types/bs58" : "~4.0.4",
"@types/chai" : "~4.3.11",
"@types/mocha": "~10.0.6",
"@types/node" : "~20.10.4",
"buffer" : "~6.0.3",
"chai" : "~4.3.10",
"mocha" : "~10.2.0",
"rimraf" : "^5.0.5",
"terser" : "~5.26.0",
"ts-loader" : "~9.5.1",
"typescript" : "~5.3.3",
"webpack" : "~5.89.0",
"webpack-cli" : "~5.1.4"
}
}