-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1006 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
44
45
46
47
48
49
50
51
{
"name": "typescript-son",
"version": "0.2.0",
"description": "GSON-like library for TypeScript",
"main": "lib/index.js",
"module": "lib/index",
"typings": "lib/index",
"scripts": {
"compile": "atm",
"test": "mocha lib/test/*.js"
},
"keywords": [
"typescript-son",
"gson",
"TypeScript",
"json",
"schema",
"serialization"
],
"author": "Ezequiel Santamaría Navarro",
"license": "ISC",
"dependencies": {
"awesome-metadata": "^0.1.0",
"reflect-metadata": "^0.1.10"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:lilezek/tson.git"
},
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/mocha": "^2.2.41",
"chai": "^4.1.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"source-map-support": "^0.4.15",
"ts-node": "^3.3.0"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register"
]
}
}