-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "temporalts",
"version": "1.1.0",
"main": "exports/lts.js",
"scripts": {
"test": "mocha"
},
"keywords": [
"lts",
"nodejs",
"node"
],
"files": [
"exports/",
"helpers/",
"CODE_OF_CONDUCT.md",
"index.js",
"LICENSE.md",
"README.md"
],
"author": "Tierney Cyren",
"license": "MIT",
"description": "temporalts is a module that leverages [Moment](https://www.npmjs.com/package/moment) (apologies, Maggie!) and the [schedule.json](https://github.com/nodejs/Release/blob/master/schedule.json) file published in the Node.js Release WG repo to generate temporal information about Node.js release lines.",
"dependencies": {
"bent": "^7.0.4",
"moment": "^2.24.0"
},
"directories": {
"example": "examples"
},
"devDependencies": {
"mocha": "^6.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cutenode/temporalts.git"
},
"bugs": {
"url": "https://github.com/cutenode/temporalts/issues"
},
"homepage": "https://github.com/cutenode/temporalts#readme"
}