-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.78 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": "typeserializer",
"version": "0.2.5",
"description": "TypeSerializer, designed to make prettier code while using exclusion strategies on objects.",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test mocha -r ts-node/register src/*.spec.ts src/**/*.spec.ts",
"cover": "NODE_ENV=test nyc npm t && nyc report --reporter=text-lcov",
"build:lib": "rm -rf dist && tsc",
"release": "standard-version && git push --follow-tags origin master",
"deploy": "npm run build:lib && cp package.json dist/package.json && cp README.md dist/README.md && npm publish --access=public dist",
"precommit": "lint-staged",
"prettier:write": "prettier --write './src/**/*.ts'",
"prettier:check": "prettier -l './src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danrevah/typeserializer.git"
},
"keywords": [
"typescript",
"serializer",
"serialize",
"decorator",
"decorators"
],
"author": "Dan Revah",
"license": "MIT",
"bugs": {
"url": "https://github.com/danrevah/typeserializer/issues"
},
"homepage": "https://github.com/danrevah/typeserializer#readme",
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0",
"prettier": "^1.13.7",
"standard-version": "^4.4.0",
"ts-node": "^3.3.0",
"typescript": "^3.7.5",
"wrappy": "^1.0.2"
},
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"extension": [
".ts"
],
"reporter": [
"json",
"html"
],
"all": true
}
}