forked from ONLYOFFICE/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "builder",
"version": "0.0.0",
"homepage": "http://www.teamlab.com",
"private": true,
"build": {
"src": [
"./**/sources/*.js",
"./Common/package.json",
"./DocService/package.json",
"./DocService/public/healthcheck.docx",
"./FileConverter/package.json",
"./FileConverter/bin/DoctRenderer.config",
"./Metrics/package.json",
"./SpellChecker/package.json",
"./Common/config/*.json",
"./Common/config/log4js/*.json",
"./Common/sources/licenseKey.pem",
"./Metrics/config/config.js"
],
"dest": "./build/server"
},
"postprocess": {
"src": [
"./build/server/**/sources/*.js"
],
"dest": "./"
},
"npm": [
"./build/server/Common",
"./build/server/DocService",
"./build/server/FileConverter",
"./build/server/Metrics",
"./build/server/SpellChecker"
],
"dependencies": {
"grunt": "^0.4.5",
"grunt-banner": "^0.6.0",
"grunt-check-dependencies": "^0.12.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-stripcomments": "^0.5.0",
"grunt-mkdir": "^1.0.0"
}
}