-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "ta-json",
"version": "2.5.0",
"description": "Type-aware JSON serializer/parser",
"main": "dist/cjs/index.js",
"types": "dist/es6/index.d.ts",
"module": "dist/es6/index.js",
"scripts": {
"lint": "tslint -c tslint.json --type-check --project ./tsconfig.json",
"compile": "tsc && tsc -p tsconfig.cjs.json",
"compile:w": "tsc -w",
"prepublishOnly": "npm run build",
"build": "npm run lint && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edcarroll/ta-json.git"
},
"author": "Edward Carroll",
"license": "MIT",
"bugs": {
"url": "https://github.com/edcarroll/ta-json/issues"
},
"keywords": [
"json",
"decorator",
"decorators",
"es6",
"es7",
"types",
"classes",
"serializer",
"parser"
],
"homepage": "https://github.com/edcarroll/ta-json#readme",
"dependencies": {
"reflect-metadata": "^0.1.12"
},
"devDependencies": {
"@edcarroll/code-style": "^2.0.0",
"@types/node": "^8.10.24",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
}
}