mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-02-10 18:05:07 +08:00
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "builder",
|
|
"version": "0.0.0",
|
|
"homepage": "http://www.teamlab.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",
|
|
"./SpellChecker/package.json",
|
|
"./Common/config/*.json",
|
|
"./Common/config/log4js/*.json",
|
|
"./Metrics/config/config.js"
|
|
],
|
|
"dest": "./build/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",
|
|
"./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"
|
|
}
|
|
}
|