-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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": "cades-kit",
"version": "1.0.0",
"description": "The CadesKit is a set of tools to simplify your work with CryptoPro CAdES Browser Plugin",
"main": "dist/cades-kit.js",
"scripts": {
"start": "webpack --config webpack.dev.js serve --mode development",
"build:prod": "webpack --config webpack.prod.js --mode production",
"build": "webpack --config webpack.dev.js --mode development",
"test": "npx mocha \"test/**/*Tests.js\"",
"test:ci": "npx mocha --config ./.mocharc.ci.yaml \"test/**/*Tests.js\"",
"build:docs": "node_modules/.bin/jsdoc -c jsdoc.json"
},
"keywords": [
"cades",
"crypto",
"cryptopro",
"browser",
"plugin",
"gost",
"signature",
"hash",
"csp"
],
"author": "Denis Semenenko <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.18.6",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/register": "^7.13.8",
"@babel/runtime": "^7.13.8",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^5.0.5",
"babel-loader": "^8.2.2",
"better-docs": "^2.7.2",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.9.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"faker": "^5.4.0",
"given2": "^2.1.7",
"jsdoc": "^3.6.11",
"mocha": "^10.1.0",
"prettier": "^1.15.2",
"sinon": "^9.2.4",
"webpack": "^5.24.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.13.3",
"webpack-merge": "^5.7.3"
}
}