-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
82 lines (82 loc) · 1.91 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "fastboot",
"version": "4.1.5",
"description": "Library for rendering Ember apps in node.js",
"keywords": [
"ember",
"fastboot"
],
"homepage": "https://github.com/ember-fastboot/fastboot#readme",
"bugs": {
"url": "https://github.com/ember-fastboot/fastboot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-fastboot/fastboot.git"
},
"license": "MIT",
"author": "Tom Dale and FastBoot contributors",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"changelog": "lerna-changelog",
"lint": "eslint --cache .",
"test": "mocha",
"preversion": "npm test",
"postversion": "git push origin master --tags"
},
"dependencies": {
"chalk": "^4.1.2",
"cookie": "^0.4.1",
"debug": "^4.3.3",
"jsdom": "^19.0.0",
"resolve": "^1.22.0",
"simple-dom": "^1.4.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"express": "^4.17.2",
"fixturify": "^2.1.0",
"lerna-changelog": "^1.0.0",
"mocha": "^9.1.2",
"prettier": "^1.19.1",
"release-it": "^14.2.2",
"release-it-lerna-changelog": "^3.1.0",
"rimraf": "^3.0.1",
"tmp": "^0.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"
}
}
}