-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 987 Bytes
/
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
{
"name": "@percuss.io/opinionated-duration-format",
"version": "1.0.0",
"description": "Convert a duration in seconds to `m:ss`, `mm:ss`, or `h:mm:ss`.",
"main": "index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js './*.js' --fix",
"shipit": "bash ./scripts/publish.sh",
"test": "mocha 'index.spec.js'"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/percuss-io/opinionated-duration-format.git"
},
"author": "Eric Carraway",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@percuss.io/eslint-config-ericcarraway": "^1.1.4",
"chai": "^4.2.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1"
},
"bugs": {
"url": "https://github.com/percuss-io/opinionated-duration-format/issues"
},
"homepage": "https://github.com/percuss-io/opinionated-duration-format#readme"
}