-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
48 lines (48 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
{
"type": "module",
"scripts": {
"clean": "./bin/clean.sh",
"gen": "npm run gen:docs && npm run gen:tsc",
"gen:docs": "node ./bin/generate-docs.js",
"gen:tsc": "./bin/generate-typescript-typings.sh",
"test": "cp -f .ssc.env test | echo && cd test && npm install --silent --no-audit && npm test",
"test:runtime-core": "cd test && npm run test:runtime-core",
"test:lint": "standard .",
"test:ios-simulator": "cd test && npm install --silent --no-audit && npm run test:ios-simulator",
"test:android": "cp -f .ssc.env test | echo && cd test && npm install --silent --no-audit && npm run test:android",
"test:android-emulator": "cp -f .ssc.env test | echo && cd test && npm install --silent --no-audit && npm run test:android-emulator",
"test:clean": "cd test && rm -rf dist",
"update-network-protocol": "./bin/update-network-protocol.sh",
"relink": "./bin/publish-npm-modules.sh --link"
},
"private": true,
"devDependencies": {
"acorn": "8.12.0",
"acorn-walk": "8.3.3",
"standard": "^17.1.0",
"typescript": "5.5.2",
"urlpattern-polyfill": "^10.0.0",
"web-streams-polyfill": "^4.0.0",
"whatwg-fetch": "^3.6.20",
"whatwg-url": "^14.0.0"
},
"optionalDependencies": {
"@socketsupply/latica": "^0.1.0"
},
"standard": {
"ignore": [
"/api/external/",
"/api/test/fast-deep-equal.js",
"/api/crypto/sodium.js",
"/api/url/urlpattern/urlpattern.js",
"/api/url/url/url.js",
"/api/fetch/fetch.js",
"/api/internal/streams/web.js",
"/npm/packages/@socketsupply/socket-node/index.cjs"
]
},
"workspaces": [
"npm/packages/@socketsupply/socket-node"
],
"version": "0.0.0"
}