-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
57 lines (57 loc) · 1.46 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
57
{
"name": "coloquent",
"version": "3.0.1-beta",
"description": "Library for retrieving model objects from a JSON-API, with a fluent syntax inspired by Laravel Eloquent.",
"keywords": [
"coloquent",
"eloquent",
"json-api",
"json",
"api",
"json-api client",
"api client",
"json-api-client",
"model",
"orm",
"mvc"
],
"author": "David Duwaer",
"license": "MIT",
"homepage": "https://github.com/DavidDuwaer/coloquent#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DavidDuwaer/coloquent.git"
},
"bugs": {
"url": "https://github.com/DavidDuwaer/coloquent/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"dist": "dist"
},
"scripts": {
"clear": "rimraf dist",
"build": "npm run clear && tsc",
"build-dev": "npm run clear && tsc --sourceMap",
"test": "npm run build-dev && mocha -r ts-node/register tests/*.test.ts tests/**/*.test.ts",
"dist": "npm install && npm run test && npm publish"
},
"dependencies": {
"error-stack-parser": "^2.0.6",
"php-date-formatter": "^1.3.4"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^5.2.7",
"@types/moxios": "^0.4.9",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.2",
"moxios": "^0.4.0",
"rimraf": "^3.0.0",
"ts-node": "^8.4.1",
"typescript": "^4.5.4"
}
}