-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 864 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
28
29
30
31
32
33
34
35
36
{
"name": "socketsnake",
"version": "1.0.0",
"type": "module",
"description": "Socket Snake",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/RepComm/socketsnake.git"
},
"keywords": [
"typescript",
"esmodules",
"babel",
"template"
],
"author": "Jonathan Crowder",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/RepComm/socketsnake.git/issues"
},
"homepage": "https://github.com/RepComm/socketsnake.git#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/plugin-transform-typescript": "^7.10.5",
"@babel/preset-env": "^7.14.1",
"@types/node": "^17.0.42"
},
"scripts": {
"build": "babel src --extensions .ts --copy-files -d lib"
},
"dependencies": {
"nanospinner": "^1.1.0"
}
}