This repository has been archived by the owner on Mar 9, 2023. It is now read-only.
forked from PeculiarVentures/webcrypto-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.82 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
{
"name": "webcrypto-core",
"version": "0.1.19",
"description": "Common layer to be used by crypto libraries based on WebCrypto API for input validation.",
"main": "dist/webcrypto-core.js",
"module": "dist/webcrypto-core.es.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run build:dist",
"build:es5": "rollup -c",
"build:map": "rollup -c -m",
"build:es2015": "rollup -c rollup.config.es.js",
"build:dist": "npm run build:es5 && npm run build:es2015",
"build:source": "tsc --declaration --declarationDir types",
"test": "mocha test",
"prepub": "npm run build",
"pub": "npm version patch && npm publish && git push",
"precoverage": "npm run build:map",
"coverage": "nyc npm test",
"precoveragehtml": "npm run coverage",
"coveragehtml": "nyc report -r html",
"predev": "if [ ! -f coverage/index.html ]; then mkdir coverage; cp .waiting.html coverage/index.html; fi",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/webcrypto-core.git"
},
"keywords": [
"webcrypto",
"crypto",
"polyfill",
"aes",
"rsa",
"sha",
"ec"
],
"dependencies": {
"tslib": "^1.7.1"
},
"devDependencies": {
"@types/node": "^8",
"coveralls": "^2.13.1",
"mocha": "^3.5.0",
"nyc": "^8",
"rollup": "^0.49.2",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^2.5.2"
},
"author": "PeculiarVentures",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/webcrypto-core/issues"
},
"homepage": "https://github.com/PeculiarVentures/webcrypto-core#readme",
"banner": "// Copyright (c) 2017, Peculiar Ventures, All rights reserved."
}