-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1007 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": "grimlock",
"description": "Grimlock is a relational data transformer for JavaScript",
"version": "2.0.0",
"author": "Orçun Tuna",
"license": "MIT",
"homepage": "https://github.com/orcuntuna/grimlock",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint",
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepublishOnly": "npm test && npm run lint && npm run build"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tsc": "^2.0.4",
"typescript": "^4.5.5"
},
"keywords": [
"transformer",
"serializer",
"resource",
"collection"
],
"files": [
"lib/**/*"
]
}