-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
72 lines (72 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "pwd-sdk",
"version": "0.0.12",
"description": "PWD sdk",
"main": "dist/index.js",
"mainReact": "react/index.js",
"module": "dist/index.es.js",
"umd": "dist/pwd.js",
"scripts": {
"dev": "node test-server | rollup -cw",
"build": "rollup -c",
"watch": "rollup -cw",
"test": "ava",
"test:watch": "ava --watch --verbose",
"new-patch": "npm version patch && git push"
},
"ava": {
"files": [
"src/**/test.ts"
],
"extensions": [
"ts"
],
"require": [
"./before-tests-register"
]
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/play-with-docker/sdk.git"
},
"files": [
"dist",
"react"
],
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/play-with-docker/sdk/issues"
},
"homepage": "https://github.com/play-with-docker/sdk#readme",
"dependencies": {
"reconnecting-websocket": "^3.2.2",
"rollup-plugin-typescript2": "^0.27.1",
"wolfy87-eventemitter": "^5.2.4",
"xterm": "^4.7.0",
"xterm-addon-fit": "^0.4.0"
},
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-typescript": "^4.1.1",
"ava": "^3.7.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.3",
"pem": "^1.14.4",
"react": "^16.13.1",
"rollup": "^2.7.2",
"rollup-plugin-css-only": "^2.0.0",
"rollup-plugin-terser": "^7.0.0",
"ts-node": "^8.9.0",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
}
}