-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.21 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
66
67
68
69
70
{
"name": "bibliograph",
"version": "3.0.0-beta.97",
"description": "Bibliograph is a powerful open source web application for the collaborative collection, editing and publishing of bibliographic data.",
"main": "",
"directories": {
"test": "test"
},
"homepage": "http://www.bibliograph.org",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/caolan/async/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cboulanger/bibliograph.git"
},
"scripts": {
"update": "tool/env/update",
"services:start": "tool/env/services-start",
"services:stop": "tool/env/services-stop",
"services:apache:restart": "tool/env/http-server restart",
"dev": "tool/dev/run",
"dev:clean": "tool/dev/run --empty-database --clean",
"compile": "pnpx qx compile",
"compile:watch": "pnpx qx compile --watch",
"cleanup": "pnpx qx clean",
"translation:frontend": "pnpx qx compile -u",
"translation:backend": "tool/bin/yii message config/i18n.php",
"test:codeception:all": "tool/test/codeception",
"test:codeception:unit": "tool/test/codeception unit",
"test:codeception:functional": "tool/test/codeception -functional",
"test:codeception:api": "tool/test/codeception \"api --env empty-database\"",
"test:testtapper": "tool/test/testtapper",
"test:testtapper:services": "tool/test/testtapper -Q ?class=bibliograph.test.services",
"test:playwright": "node ./test/playwright/test-login.js"
},
"author": "Christian Boulanger (@cboulanger) [email protected]",
"license": "ISC",
"devDependencies": {
"@qooxdoo/compiler": "^1.0.0",
"@qooxdoo/eslint-config-jsdoc-disable": "^1.0.3",
"@qooxdoo/eslint-config-qx": "^2.0.1",
"@qooxdoo/eslint-plugin-qx": "^1.2.1",
"array-equal": "^1.0.0",
"dotenv": "^16.0.2",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.21.2",
"json-diff": "^1.0.3",
"tape": "^5.0.1",
"semver": "^7.3.5"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"browser": true,
"node": true
},
"globals": {
"qx": true,
"qcl": true,
"bibliograph": true
}
},
"dependencies": {}
}