-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 903 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
34
35
36
37
38
39
{
"name": "fitdown",
"version": "0.1.0",
"description": "Markup language and parser for weightlifting logs.",
"main": "dist/weightliftingML.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha",
"pretest": "npm run build",
"prettier": "prettier **.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datavis-tech/weightliftingML.git"
},
"keywords": [
"Fitness",
"Exercise",
"Weight",
"Lifting",
"Note",
"Taking"
],
"author": "Curran Kelleher",
"license": "MIT",
"bugs": {
"url": "https://github.com/datavis-tech/weightliftingML/issues"
},
"homepage": "https://github.com/datavis-tech/weightliftingML#readme",
"devDependencies": {
"mocha": "^8.1.3",
"prettier": "^2.1.2",
"rollup": "^2.28.2"
},
"dependencies": {
"d3-time-format": "^3.0.0"
}
}