forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.35 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
{
"name": "selfoss",
"description": "selfoss",
"ver": "2.19-SNAPSHOT",
"repository": {
"type": "git",
"url": "https://github.com/fossar/selfoss.git"
},
"engines": {
"nodejs": ">=10",
"npm": ">=5"
},
"scripts": {
"bump-version": "$NODE utils/bump-version.js",
"check": "npm run check:client && npm run check:server",
"check:client": "npm run lint:client",
"check:server": "npm run lint:server && npm run cs:server && npm run test:server",
"cs:server": "composer run-script cs",
"dev": "npm run --prefix assets/ dev",
"build": "npm run --prefix assets/ build",
"dist": "python3 utils/create-zipball.py",
"fix": "npm run fix:client && npm run fix:server",
"fix:client": "npm run --prefix assets/ fix",
"fix:server": "composer run-script fix",
"install-dependencies": "npm run install-dependencies:client && npm run install-dependencies:server",
"install-dependencies:client": "npm install --production=false --prefix assets/",
"install-dependencies:server": "composer install --dev",
"lint:client": "npm run --prefix assets/ lint",
"lint:server": "composer run-script lint",
"test:server": "composer run-script test",
"test:integration": "python3 tests/integration/run.py",
"postinstall": "npm run install-dependencies"
},
"cacheDirectories": [
"assets/node_modules"
]
}