-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "convert-iso8601-duration",
"version": "3.0.0",
"description": "Convert YouTube like duration strings to seconds",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"build": "npx tsc"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danm/convert-iso8601-duration.git"
},
"keywords": [
"iso8601",
"youtube",
"time",
"duration"
],
"author": "Daniel Morrison <daniel.morrison@bbc.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danm/convert-iso8601-duration/issues"
},
"homepage": "https://github.com/danm/convert-iso8601-duration#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.4.5",
"@types/jest": "^24.0.15",
"@types/node": "^12.0.10"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}