-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.12 KB
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
{
"name": "codable",
"version": "0.1.16",
"description": "Codable base class for TypeScript.",
"repository": {
"type": "git",
"url": "git@github.com:tanb/codable.git"
},
"main": "dist/src/index.js",
"files": [
"dist"
],
"scripts": {
"test": "npx karma start",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"codable",
"decodable",
"encodable",
"serialization",
"deserialization",
"typescript"
],
"author": {
"name": "Tomonori Tanabe",
"email": "tanb@me.com"
},
"bugs": {
"url": "https://github.com/tanb/codable/issues"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "~3.3.8",
"@types/node": "^10.1.3",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-typescript": "^4.1.1",
"reflect-metadata": "^0.1.13",
"tslint": "^5.10.0",
"typescript": "^3.6.2"
},
"license": "MIT"
}