forked from AndriiZelenskyi/serialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "serialize-ts",
"version": "2.4.0",
"description": "Serializers for typescript",
"main": "dist/index.js",
"scripts": {
"test": "karma start karma.conf.js",
"test-once": "karma start karma.conf.js --single-run",
"compile": "tsc -p ./tsconfig.json",
"prepublish": "yarn test-once && yarn compile",
"format": "prettier-tslint fix '**/*.ts' "
},
"keywords": [
"typescript",
"serialize",
"serialization",
"deserialization",
"converters",
"json",
"http"
],
"author": "xoll",
"license": "ISC",
"dependencies": {
"prettier": "^1.15.3",
"reflect-metadata": "^0.1.10"
},
"repository": {
"type": "git",
"url": "https://github.com/AndreyZelenskiy/serialize.git"
},
"devDependencies": {
"@types/jasmine": "^2.8.4",
"jasmine": "^2.9.0",
"jasmine-core": "^2.9.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-typescript": "^3.0.9",
"prettier-tslint": "^0.4.0",
"typescript": "^2.6.2"
}
}