-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 872 Bytes
/
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
{
"name": "ts-mini",
"version": "1.0.54",
"description": "Pure Typescript framework",
"devDependencies": {
"@types/node": "^12.12.21",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-ts-mini": "^0.0.7",
"tsc": "^1.20150623.0",
"typescript": "^3.8.2"
},
"scripts": {
"bump": "yarn version --patch",
"compile": "parcel __internals/writeback.ts --out-dir __internals/tmp",
"build:test": "parcel test/src/index.html --out-dir test/dst/dev",
"build:test:mini": "parcel build --experimental-scope-hoisting test/src/index.html --out-dir test/dst/dev-mini"
},
"keywords": [],
"author": "Daniel Mazurkiewicz <[email protected]>",
"repository": "https://github.com/DanielMazurkiewicz/ts-mini.git",
"license": "MIT",
"dependencies": {
"@types/ws": "^7.2.0",
"ws": "^7.2.1"
}
}