forked from ember-fastboot/ember-cli-fastboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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": "@gaurav9576/fastboot-express-middleware",
"version": "4.2.0-beta.1",
"description": "An Express middleware for rendering Ember apps with FastBoot",
"keywords": [
"fastboot",
"ember",
"express",
"middleware"
],
"homepage": "https://github.com/ember-fastboot/fastboot-express-middleware#readme",
"bugs": {
"url": "https://github.com/ember-fastboot/fastboot-express-middleware/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-fastboot/fastboot-express-middleware.git"
},
"license": "MIT",
"author": "Tom Dale <tom@tomdale.net>",
"main": "src/index.js",
"scripts": {
"lint:js": "eslint --cache .",
"test": "yarn lint:js && mocha"
},
"dependencies": {
"chalk": "^4.1.2",
"@gaurav9576/fastboot": "4.2.0-beta.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"express": "^4.17.2",
"mocha": "^9.1.2",
"prettier": "^1.19.1",
"release-it": "^14.2.2",
"release-it-lerna-changelog": "^3.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.1"
},
"engines": {
"node": "12.* || 14.* || >=16"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}