-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "pacecal",
"version": "1.3.0",
"description": "Utility to calculate pace, average pace",
"main": "./dist/pacecal.cjs.js",
"module": "./dist/pacecal.esm.js",
"browser": "./dist/pacecal.umd.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pranavacharya/pacecal.git"
},
"keywords": [
"pace",
"average pace",
"marathon",
"speed"
],
"author": "Pranav Acharya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pranavacharya/pacecal/issues"
},
"homepage": "https://github.com/pranavacharya/pacecal#readme",
"devDependencies": {
"@babel/preset-env": "^7.11.0",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"rollup": "^2.21.0",
"rollup-plugin-terser": "^6.1.0"
},
"files": [
"dist"
]
}