-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "jsonmonger",
"version": "0.3.0",
"description": "A json:api-compliant abstraction layer for your JavaScript applications.",
"main": "index.js",
"scripts": {
"test": "mocha test/**/**/*.spec.js",
"lint": "eslint --config .eslintrc.yaml --ignore-path .eslintignore ./"
},
"author": "Alfonso Gómez-Arzola <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"lodash": "^4.17.5",
"request": "^2.85.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"mocha": "^5.1.1",
"pluralize": "^7.0.0",
"pre-push": "^0.1.1",
"should": "^13.2.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChromaticHQ/jsonmonger.git"
},
"keywords": [
"json",
"jsonapi",
"mapping"
],
"bugs": {
"url": "https://github.com/ChromaticHQ/jsonmonger/issues"
},
"homepage": "https://github.com/ChromaticHQ/jsonmonger#readme",
"pre-push": [
"test",
"lint"
]
}