forked from PeculiarVentures/xmldsigjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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
{
"name": "xmldsigjs",
"version": "2.0.26",
"description": "XMLDSIGjs provides an implementation of XMLDSIG in Typescript/Javascript based on WebCrypto ",
"main": "dist/index.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"scripts": {
"start": "node test/html/server.js",
"prepare": "npm run build",
"pretest": "npm run build:map",
"test": "mocha test/scripts",
"test:local": "nyc --reporter=lcov npm test",
"build": "npm run build:lib && npm run build:es5 && npm run build:web",
"build:es5": "rollup -c",
"build:lib": "rollup -c rollup.config.lib.js",
"build:map": "rollup -c --dev",
"build:source": "tsc --declaration --declarationDir types",
"build:web": "rollup -c rollup.config.web.js && babel dist/xmldsig.js --comment=false --out-file dist/xmldsig.js",
"prepub": "npm run build",
"pub": "npm version patch && npm publish && git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/xadesjs.git"
},
"keywords": [
"xml",
"xmldsig",
"webcrypto",
"signature",
"rsa",
"ec"
],
"author": "Peculiar Ventures, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/xadesjs/issues"
},
"homepage": "https://github.com/PeculiarVentures/xadesjs#readme",
"dependencies": {
"asn1js": "^2.0.26",
"pkijs": "^2.1.82",
"pvutils": "^1.0.17",
"tslib": "^1.10.0",
"xml-core": "^1.0.15",
"xpath": "0.0.27"
},
"devDependencies": {
"@types/asn1js": "^0.0.1",
"@types/node": "^10.5.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.6",
"express": "^4.17.1",
"mocha": "^6.2.0",
"@peculiar/webcrypto": "1.0.12",
"nyc": "^14.1.1",
"rollup": "^1.20.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"typescript": "^3.6.2"
}
}