-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "apostrophe-multisite",
"version": "2.12.3",
"description": "Multisite support for the Apostrophe CMS. Create & manage multiple sites with the same configuration and host them efficiently.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "eslint . && nyc mocha --timeout=20000 --exit",
"test:cover": "nyc --reporter=html npm test && open-cli ./coverage/index.html",
"test:watch": "mocha --timeout=20000 --watch"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apostrophecms/apostrophe-multisite.git"
},
"keywords": [
"apostrophecms",
"apostrophe",
"multisite"
],
"author": "Apostrophe Technologies, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/apostrophecms/apostrophe-multisite/issues"
},
"homepage": "https://github.com/apostrophecms/apostrophe-multisite#readme",
"dependencies": {
"bluebird": "^3.5.1",
"boring": "^0.1.0",
"compare-versions": "^3.6.0",
"emulate-mongo-2-driver": "^1.2.3",
"express": "^4.16.3",
"http-terminator": "^2.0.3",
"lodash": "^4.17.19",
"mkdirp": "^0.5.5",
"resolve": "^1.17.0",
"shell-quote": "^1.6.1",
"uploadfs": "^1.16.0"
},
"devDependencies": {
"apostrophe": "^2.109.0",
"chai": "^4.2.0",
"del": "^5.1.0",
"eslint": "^7.1.0",
"eslint-config-apostrophe": "^3.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"open-cli": "^5.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"server-destroy": "^1.0.1"
}
}