-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "ruscryptojs",
"version": "2.8.0",
"description": "Simplified library for Russian GOST crypto providers.",
"main": "dist/ruscrypto.min.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode=production && npm run-script versionup",
"dev": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --hot --mode=development --open",
"start": "NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --hot --mode=development --host 0.0.0.0",
"versionup": "npm --no-git-tag-version version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aleksandr-ru/RusCryptoJS.git"
},
"keywords": [
"jacarta",
"cryptopro",
"rutoken"
],
"author": "Aleksandr.ru",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aleksandr-ru/RusCryptoJS/issues"
},
"homepage": "https://aleksandr-ru.github.io/RusCryptoJS/",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@types/webpack-env": "^1.13.6",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"webpack": "^4.17.0",
"webpack-cli": "^3.3.12",
"webpack-copy-after-build-plugin": "^1.0.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"console-polyfill": "^0.3.0",
"js-sha1": "^0.6.0",
"rutoken": "^1.0.8"
}
}