-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
145 lines (145 loc) · 3.72 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "@webcrypto/tools",
"version": "2.0.0",
"private": false,
"description": "A set of tools to facilitate and give good defaults for use of the native Web Crypto API.",
"publishConfig": {
"access": "public"
},
"keywords": [
"crypto",
"web crypto",
"cryptography",
"webcrypto",
"security",
"cryptokey",
"key"
],
"main": "dist/web-crypto-tools.cjs.js",
"browser": "dist/web-crypto-tools.umd.js",
"module": "dist/web-crypto-tools.module.js",
"es2015": "dist/web-crypto-tools.es2015.js",
"typings": "dist/web-crypto-tools.d.ts",
"files": [
"dist"
],
"author": "William Grasel <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/willgm/web-crypto-tools.git"
},
"homepage": "https://willgm.github.io/web-crypto-tools/",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"start": "rollup -c rollup.config.ts -w",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "shx rm -rf dist",
"build": "tsc --module commonjs && rollup -c rollup.config.ts",
"predocs": "shx rm -rf docs",
"docs": "typedoc --excludeInternal --out docs ./src/web-crypto-tools.ts",
"postdocs": "shx touch ./docs/.nojekyll",
"test": "karma start --single-run",
"tdd": "karma start",
"precommit": "lint-staged",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"dist/**.js",
"dist/**.js.map"
]
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"docs",
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
]
]
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth:": 120
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@types/jasmine": "^3.10.3",
"@types/node": "^17.0.18",
"colors": "^1.4.0",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"jasmine-core": "^4.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^4.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.3",
"lint-staged": "^12.3.4",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.14.3",
"prompt": "^1.2.1",
"rollup": "^1.26.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.27.3",
"semantic-release": "^17.4.7",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}