forked from wrkout/exercises.json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
50
51
{
"name": "exercises.json",
"version": "1.0.0",
"description": "exercises.json - Free open public domain exercise data in JSON format",
"repository": {
"type": "git",
"url": "git://github.com/wrkout/exercises.json.git"
},
"scripts": {
"lint": "eslint . --ext .ts --quiet",
"test": "jest",
"build:json": "ts-node scripts/json-builder.ts",
"build:psql": "ts-node scripts/psql-builder.ts"
},
"keywords": [
"exercise",
"fitness",
"gym",
"open data"
],
"author": "Ollie Jennings <[email protected]>",
"license": "Public Domain",
"bugs": {
"url": "https://github.com/wrkout/exercises.json/issues"
},
"homepage": "https://github.com/wrkout/exercises.json",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.159",
"@types/lodash.snakecase": "^4.1.6",
"@types/node": "^14.6.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"prettier": "^2.1.2",
"request": "^2.88.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"knex": "^0.21.5",
"lodash.snakecase": "^4.1.1",
"uuid": "^8.3.0"
}
}