forked from socketsupply/ssc-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 819 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
{
"name": "@socketsupply/ssc-node",
"version": "1.8.2",
"description": "",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"type": "module",
"scripts": {
"test": "standard index.js",
"pub": "npm pub && npm publish --registry https://npm.pkg.github.com",
"build": "esbuild index.js --outfile=index.cjs --platform=node --format=cjs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socketsupply/ssc-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/socketsupply/ssc-node/issues"
},
"homepage": "https://github.com/socketsupply/ssc-node#readme",
"devDependencies": {
"@types/node": "16.10.2",
"esbuild": "0.14.49",
"standard": "16.0.3"
}
}