forked from apichef/sarala-json-api-data-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
52
{
"name": "sarala-json-api-data-formatter",
"version": "1.0.3",
"description": "Simple and fluent framework agnostic javascript library to transform standard JSON API responses to simple JSON objects and vice versa.",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"t": "jest",
"tw": "jest --watch",
"cc": "jest --coverage",
"cs": "./node_modules/.bin/eslint src/*",
"csf": "./node_modules/.bin/eslint src/* --fix"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"babel": {
"presets": [
"latest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sarala-io/sarala-json-api-data-formatter.git"
},
"keywords": [
"json-api",
"data-formatter"
],
"author": "Milroy Fraser",
"license": "MIT",
"bugs": {
"url": "https://github.com/sarala-io/sarala-json-api-data-formatter/issues"
},
"homepage": "https://github.com/sarala-io/sarala-json-api-data-formatter#readme",
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"codecov": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"jest": "^22.4.3"
}
}