-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.24 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "jianhan-fp-lib",
"version": "1.2.26",
"description": "Some common functions for fp",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jianhan/fp-lib.git"
},
"bugs": {
"url": "https://github.com/jianhan/fp-lib/issues"
},
"homepage": "https://github.com/jianhan/fp-lib#readme",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest -c jest.config.unit.js",
"test:unit": "npm run clean && npm run build & jest -c jest.config.unit.js",
"test:integration": "npm run clean && npm run build & jest -c jest.config.integration.js",
"lint": "node_modules/tslint/bin/tslint -p tsconfig.json -c tslint.json 'src/**/*.{ts,tsx}' -o lint-result.json -t json",
"build": "tsc",
"clean": "rm -rf dist",
"doc": "./node_modules/.bin/typedoc --out doc --mode modules src/",
"version": "auto-changelog -p && git add CHANGELOG.md",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/github": "^7.0.5",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/aws-lambda": "^8.10.39",
"@types/http-status-codes": "^1.2.0",
"@types/immutable": "^3.8.7",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/moment": "^2.13.0",
"@types/node": "^13.1.2",
"@types/ramda": "^0.27.0",
"@types/sanctuary": "^0.14.2",
"@types/sprintf-js": "^1.1.2",
"@types/typescript": "^2.0.0",
"auto-changelog": "^1.16.2",
"jest": "^25.1.0",
"jsverify": "^0.8.4",
"rewire": "^5.0.0",
"semantic-release": "^17.0.4",
"sinon": "^9.0.0",
"ts-jest": "^25.2.0",
"tslint": "^6.1.1",
"tslint-clean-code": "^0.2.10",
"tslint-sonarts": "^1.9.0",
"typedoc": "^0.16.10"
},
"dependencies": {
"class-validator": "^0.11.0",
"faker": "^4.1.0",
"immer": "^6.0.2",
"fp-ts": "^2.5.3",
"http-status-codes": "^1.4.0",
"immutable": "^4.0.0-rc.12",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"ramda": "^0.27.0",
"ramda-fantasy": "^0.8.0",
"rxjs": "^6.5.4",
"sanctuary": "^3.0.0",
"sanctuary-def": "^0.21.1",
"sanctuary-identity": "^2.1.0",
"sprintf-js": "^1.1.2",
"winston": "^3.2.1",
"snyk": "^1.316.1"
},
"keywords": [
"fp",
"lambda",
"typescript"
],
"author": "Jian Han",
"license": "BSD-3-Clause",
"publishConfig": {
"access": "public"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"prepareCmd": "zip -r doc.zip doc && zip -r dist.zip dist"
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"assets": [
"doc.zip",
"dist.zip",
"CHANGELOG.md"
]
}
]
],
"branches": [
"master"
]
},
"snyk": true
}