-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 KB
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": "@leobagua/json-api-helper",
"version": "1.2.2",
"description": "JSON API Helper is a JS library that helps you to normalize and deserialize data within the JSON API specification.",
"main": "build/index.js",
"author": "Leonardo da Rosa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leobagua/json-api-helper.git"
},
"homepage": "https://github.com/leobagua/json-api-helper#readme",
"bugs": {
"url": "https://github.com/leobagua/json-api-helper.git/issues"
},
"keywords": [
"api",
"json",
"parser",
"rails",
"active record",
"deserializer"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"scripts": {
"build": "babel src -d build",
"prepare": "yarn build && yarn cc",
"test": "jest --watch --coverage",
"cc": "jest --coverage"
},
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/runtime": "^7.9.2",
"babel-eslint": "^10.1.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"jest": "^26.0.1"
}
}