-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.04 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
{
"name": "typevert",
"version": "0.9.11",
"description": "Define Object to Object mapping using Typescript decorators",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf ./lib && rm -f ./.tsbuildinfo && rm -rf ./.nyc_output && rm -rf ./coverage",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "tslint --project tsconfig.json {src}/**/*.ts",
"build": "tsc -p tsconfig.build.json --declaration",
"test": "mocha -r ts-node/register -p tsconfig.test.json ./test/*.spec.ts",
"coverage": "NODE_ENV=test nyc npm run test",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run typecheck"
}
},
"lint-staged": {
"*.{js,ts,html,md,less,json}": [
"prettier --write",
"git add"
],
"*.ts": "tslint --project tsconfig.json {src}/**/*.ts"
},
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/andbul/typevert.git"
},
"keywords": [
"objecttoobject",
"mappers",
"decorators",
"typescript",
"mapstruct",
"js"
],
"author": "Andrey Bulgakov <andbul0103@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andbul/typevert/issues"
},
"homepage": "https://github.com/andbul/typevert#readme",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.8",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"husky": "^3.0.7",
"lint-staged": "^9.4.1",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.6.3"
},
"dependencies": {}
}