forked from ONLYOFFICE/server
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.42 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
{
"name": "builder",
"version": "1.0.1",
"homepage": "https://www.onlyoffice.com",
"private": true,
"grunt": {
"copy": {
"server": {
"expand": true,
"src": [
"./**/sources/*.js",
"./Common/package.json",
"./DocService/package.json",
"./DocService/public/healthcheck.docx",
"./FileConverter/package.json",
"./FileConverter/bin/DoctRenderer.config",
"./Metrics/package.json",
"./Common/config/*.json",
"./Common/config/log4js/*.json",
"./Metrics/config/config.js"
],
"dest": "./build/server"
}
},
"develop-copy": {
"server": {}
},
"clean": {
"options": {
"force": true
},
"server": "./build/server"
},
"mkdir": {
"server": {
"options": {
"create": [
"./build/server"
]
}
}
}
},
"postprocess": {
"src": [
"./build/server/**/sources/*.js"
],
"dest": "./"
},
"npm": [
"./build/server/Common",
"./build/server/DocService",
"./build/server/FileConverter",
"./build/server/Metrics"
],
"dependencies": {
"grunt": "^1.3.0",
"grunt-banner": "^0.6.0",
"grunt-check-dependencies": "^1.0.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-stripcomments": "^0.7.2",
"grunt-mkdir": "^1.0.0"
}
}