-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.52 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
{
"name" : "@osmium/tools",
"description" : "Osmium tools",
"license" : "MIT",
"version" : "0.6.5",
"author" : {
"name" : "Vasiliy Isaichkin",
"email": "[email protected]"
},
"main" : "./dist/index.js",
"browser" : "./dist/index.min.js",
"types" : "./defs/index.d.ts",
"scripts" : {
"compile" : "tsc && webpack",
"compress" : "terser --compress --ecma 2015 -o ./dist/index.min.js -- ./dist/index.min.js",
"make_docs" : "typedoc",
"test" : "mocha -r node_modules/ts-node/register ./tests/index.ts",
"clean" : "rimraf dist docs",
"clean:full" : "rimraf dist docs node_modules",
"build" : "npm run clean && npm run compile && npm run compress && npm run make_docs && npm run test",
"prepublishOnly": "npm run build"
},
"dependencies" : {
"merge-deep": "~3.0.3"
},
"devDependencies": {
"@types/chai" : "4.3.1",
"@types/mocha" : "9.1.1",
"@types/node" : "16.11.33",
"buffer" : "~6.0.3",
"chai" : "~4.3.6",
"crypto-browserify": "~3.12.0",
"fs-extra" : "~10.1.0",
"mocha" : "~10.0.0",
"rimraf" : "~3.0.2",
"stream-browserify": "~3.0.0",
"terser" : "~5.13.1",
"ts-loader" : "~9.3.0",
"ts-node" : "~10.7.0",
"typedoc" : "~0.22.15",
"typescript" : "~4.6.4",
"webpack" : "~5.72.0",
"webpack-cli" : "~4.9.2"
}
}