-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "serializy",
"version": "1.0.0-beta.1",
"description": "Object schema validation and data serialization",
"main": "lib/serializy.js",
"unpkg": "dist/serializy.js",
"module": "es/serializy.js",
"scripts": {
"build:live": "nodemon --legacy-watch --watch \".\\**\\*.ts\" --exec ts-node example/index.ts",
"build": "rollup -c",
"clean": "rimraf lib dist es",
"debug": "npm run build:live --debug-brk=5858",
"exec": "ts-node example/index.ts",
"lint:fix": "npm run lint -- --fix",
"lint": "tslint 'src/**/*.ts' 'tests/**/*.ts'",
"prepare": "npm run clean && npm run build",
"build-sizes": "bash build/output_file_sizes.sh",
"test": "jest"
},
"author": "acacode",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix",
"post-update": "npm run prepare && npm run exec"
}
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.13",
"babel-jest": "^24.8.0",
"chai": "^4.2.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"mocha": "^6.1.4",
"nodemon": "^1.18.10",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"rollup": "^1.11.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript": "^1.0.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.2",
"tslint": "5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "3.3.3333"
},
"dependencies": {},
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/acacode/serializy.git"
},
"keywords": [
"json",
"object",
"schema",
"jsonschema",
"validator",
"validation",
"serializer",
"serialization",
"mapper",
"convert",
"data"
],
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
]
}