-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.09 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
{
"name": "wormhole.js",
"version": "1.0.0",
"description": "",
"main": "./build/umd/index.min.js",
"module": "./build/esm5/index.js",
"typings": "./build/esm/index.d.ts",
"esnext": "./build/esm/index.js",
"scripts": {
"dev": "tsc-watch -b --onSuccess \"npm run build:umd \"",
"build:es5": "tsc",
"build:es6": "tsc --target es6 --outdir build/esm --module esnext",
"build:umd": "webpack --mode=production",
"build": "npm run build:es5 && npm run build:es6 && npm run build:umd",
"webpack": "webpack --mode=development --watch",
"tslint": "tslint -c tslint.json 'src/**/*.ts'"
},
"author": "Petr Chalov",
"license": "ISC",
"devDependencies": {
"@types/node": "^12.12.3",
"awesome-typescript-loader": "^5.2.1",
"ts-loader": "^6.2.1",
"tsc-watch": "^4.0.0",
"tslint": "^5.20.0",
"tslint-webpack-plugin": "^2.1.0",
"typescript": "^3.6.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-config-utils": "^2.3.1"
},
"dependencies": {
"@msgpack/msgpack": "^1.12.2"
}
}