-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
43 lines (43 loc) · 1001 Bytes
/
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
{
"name": "ts-jsonapi",
"version": "2.1.3",
"description": "JSON API (De) Serializer in Typescript",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "tsc -w",
"test": "npm run compile && mocha",
"compile": "tsc",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohuk/ts-jsonapi.git"
},
"keywords": [
"typescript",
"jsonapi"
],
"author": "Mohammad Umair Khan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohuk/ts-jsonapi/issues"
},
"homepage": "https://github.com/mohuk/ts-jsonapi#readme",
"devDependencies": {
"@types/inflected": "^1.1.29",
"@types/lodash": "^4.14.37",
"chai": "^3.5.0",
"mocha": "^3.1.2",
"mongoose": "^4.6.3",
"typescript": "^2.1.4"
},
"dependencies": {
"inflected": "^1.1.6",
"lodash": "^4.16.4"
},
"files": [
"lib"
]
}