forked from milroyfraser/sarala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
52
53
54
55
56
{
"name": "sarala",
"version": "0.3.2",
"description": "Javascript library to communicate with RESTful API built following JSON API specification. inspired by Laravel’s Eloquent.",
"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
},
"repository": {
"type": "git",
"url": "git+https://github.com/milroyfraser/sarala.git"
},
"keywords": [
"restful-api",
"json-api",
"laravel",
"eloquent",
"javascript",
"orm"
],
"author": "Milroy Fraser",
"license": "MIT",
"bugs": {
"url": "https://github.com/milroyfraser/sarala/issues"
},
"homepage": "https://github.com/milroyfraser/sarala#readme",
"dependencies": {
"lodash": "^4.17.10",
"moment": "^2.22.1",
"sarala-json-api-data-formatter": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.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"
}
}