-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "spec-3nweb-server",
"version": "1.7.1",
"description": "3NWeb spec server.",
"main": "build/lib.js",
"types": "build/lib.d.ts",
"scripts": {
"build": "tsc -p ts-code",
"test": "node build/tests/jasmine.js",
"clear-for-packing": "npm prune --production && bash -c \"rm -rf build/mock build/tests 'node_modules/ecma-nacl/c sources'\"",
"clear-for-packing-mock": "npm prune --production && bash -c \"rm -rf build/tests 'node_modules/ecma-nacl/c sources'\"",
"pack": "pkg --config package.json build/main.js",
"pack-deb": "npm run pack && bash packing/create-deb.sh",
"postinstall": "node -e \"try{require('./postinstall')}catch(e){}\""
},
"repository": {
"type": "git",
"url": "https://github.com/3nsoft/spec-server.git"
},
"keywords": [
"3NWeb",
"server",
"ASMail",
"MailerId",
"3NStorage"
],
"author": {
"name": "3NSoft Inc.",
"url": "https://3nsoft.com",
"email": "[email protected]"
},
"license": "GPL-3.0",
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"ecma-nacl": "^2.4.0",
"express": "^4.19.2",
"js-yaml": "^4.1.0",
"prompts": "^2.4.2",
"punycode": "^2.1.1",
"ws": "^7.4.6",
"xsp-files": "^2.0.0"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jasmine": "^3.9.1",
"@types/node": "^16.11.7",
"@types/ws": "^4.0.0",
"jasmine": "^3.9.0",
"pkg": "^5.8.1",
"rxjs": "^5.3.0",
"typescript": "^4.7.4",
"xhr2": "^0.1.3"
},
"pkg": {
"targets": [
"node18-linux-x64"
],
"outputPath": "dist"
},
"readmeFilename": "README.md"
}