forked from PeculiarVentures/xadesjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.17 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
{
"name": "xadesjs",
"version": "2.0.11",
"description": "A pure Typescript/Javascript implementation of XAdES based on XMLDSIGjs.",
"main": "dist/index.js",
"types": "index.d.ts",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"scripts": {
"start": "node test/html/server.js",
"test": "mocha test/**/*.js",
"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:test": "tsc -p test",
"build:types": "tsc --declaration --declarationDir types",
"build:web": "rollup -c rollup.config.web.js && babel dist/xades.js --out-file dist/xades.js",
"pub": "npm run build && npm version patch && npm publish && git push",
"sync": "git ac && git pull --rebase && git push",
"coverage": "nyc npm test",
"precoveragehtml": "npm run coverage",
"coveragehtml": "nyc report -r html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/xadesjs.git"
},
"keywords": [
"xml",
"xmldsig",
"xades",
"webcrypto",
"signature",
"rsa",
"ec"
],
"author": "Peculiar Ventures, Inc.",
"contributors": [
"Miroshin Stepan<[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PeculiarVentures/xadesjs/issues"
},
"homepage": "https://github.com/PeculiarVentures/xadesjs#readme",
"dependencies": {
"dateformat": "^3.0.2",
"tslib": "^1.8.0",
"xmldsigjs": "^2.0.17"
},
"devDependencies": {
"@types/dateformat": "^1.0.1",
"@types/mocha": "^2.2.44",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"coveralls": "^3.0.0",
"mocha": "^4.0.1",
"node-webcrypto-ossl": "^1.0.32",
"nyc": "^11",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^2.6.2"
}
}