-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 3.57 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
{
"name": "@coast-team/mute-crypto-helper",
"version": "1.0.4",
"description": "Helper functions for mute-crypto package",
"main": "dist/mute-crypto-helper.node.es5.cjs.js",
"module": "dist/mute-crypto-helper.node.es5.esm.js",
"browser": "dist/mute-crypto-helper.browser.es5.esm.js",
"es2015": "dist/mute-crypto-helper.browser.es2015.esm.js",
"esnext": "dist/mute-crypto-helper.browser.esnext.esm.js",
"types": "dist/types/src/index.node.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/coast-team/mute-crypto-helper.git"
},
"keywords": [
"cryptography",
"webcrypto",
"keyagreement"
],
"contributors": [
"Jean-Philippe Eisenbarth",
"Philippe Kalitine <[email protected]> (https://philippe.kalitine.name/)",
"Baptiste Hubert"
],
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coast-team/mute-crypto-helper/issues"
},
"homepage": "https://coast-team.github.io/mute-crypto-helper",
"scripts": {
"doc": "typedoc --theme minimal --out docs/ src/ && touch docs/.nojekyll",
"build": "rm -rf dist && rollup --config",
"postbuild": "mkdir dist/types/src/bn.js && cp src/bn.js/bn.d.ts dist/types/src/bn.js",
"test": "npm run test-node && npm run test-browser",
"test-browser": "karma start",
"pretest-node": "tsc -p tsconfig.test.json",
"test-node": "jasmine --config=jasmine.json",
"test-travis": "npm run test-node && npm run test-browser -- --single-run --no-auto-watch",
"lint": "tslint --fix -p tsconfig.json && prettier --write --list-different src/**/*.ts test/**/*.{ts,config.js} ./*.{ts,js,json,md} && markdownlint ./*.md -i 'CHANGELOG.md'",
"precommit": "lint-staged && npm run test-node && npm run test-browser -- --single-run --no-auto-watch",
"pre-release": "npm run build",
"release": "standard-version --no-verify",
"cz": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/bn.js": "^4.11.2",
"@types/jasmine": "^2.8.9",
"@types/node": "^8.10.36",
"bn.js": "^4.11.8",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"jasmine": "^3.2.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.2",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^3.0.13",
"lint-staged": "^7.3.0",
"markdownlint-cli": "^0.13.0",
"node-webcrypto-ossl": "^1.0.38",
"prettier": "^1.14.3",
"rollup": "^0.65.2",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-typescript2": "^0.17.2",
"standard-changelog": "^2.0.1",
"standard-version": "^4.4.0",
"text-encoding": "^0.6.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.12.0",
"typescript": "^3.1.3"
},
"lint-staged": {
"linters": {
"*.md": [
"prettier --write --list-different",
"git add",
"markdownlint -i 'CHANGELOG.md'"
],
"*.ts": [
"tslint --fix -p tsconfig.json",
"git add"
],
"*.{ts,json,scss,css}": [
"prettier --write --list-different",
"git add"
]
},
"concurrent": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}