-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.26 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.26 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"bugs": {
"url": "https://github.com/stellar-fox/cryptops/issues"
},
"contributors": [
{
"name": "drmats",
"email": "xcmats@protonmail.com",
"url": "https://twitter.com/xcmats/"
}
],
"dependencies": {
"@babel/runtime": "^7.6.0",
"@xcmats/js-toolbox": "^0.8.2",
"crypto-browserify": "^3.12.0",
"scrypt-js": "^2.0.4",
"sjcl": "^1.0.8",
"tweetnacl": "^1.0.1"
},
"description": "Crypto building blocks.",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.6.0",
"@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.6.0",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/plugin-transform-literals": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.4.4",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/preset-env": "^7.6.0",
"@types/sjcl": "^1.0.28",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"cross-env": "^5.2.1",
"eslint": "^6.4.0",
"gh-pages": "^2.1.1",
"jsdoc": "3.5.5",
"minami": "^1.2.3",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"rimraf": "^3.0.0",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=6.0.0"
},
"files": [
".eslintrc",
"dist",
"es",
"jsdoc",
"lib",
"src/index.js",
"test",
"typings"
],
"homepage": "https://github.com/stellar-fox/cryptops",
"keywords": [
"crypto",
"aes",
"salsa",
"pbkdf2",
"scrypt",
"sha",
"passphrase",
"secrets"
],
"license": "Apache-2.0",
"main": "lib/cryptops.js",
"module": "es/cryptops.js",
"name": "@stellar-fox/cryptops",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-fox/cryptops.git"
},
"scripts": {
"build": "npm run clean && npm run build:all",
"build:all": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:jsdoc",
"build:commonjs": "cross-env BABEL_ENV=production webpack -p --config=webpack/webpack.commonjs.js",
"build:es": "mkdirp ./es && cross-env BABEL_ENV=production babel ./src/index.js -o ./es/cryptops.js",
"build:umd": "cross-env BABEL_ENV=production webpack -p --config=webpack/webpack.umd.js",
"build:jsdoc": "echo \"Generating jsdoc ...\" && jsdoc -c ./jsdoc.json -R ./README.md -r ./src/ -d ./jsdoc/",
"clean": "npm run clean:build && npm run clean:jsdoc",
"clean:build": "npm run clean:commonjs && npm run clean:es && npm run clean:umd",
"clean:commonjs": "rimraf ./lib",
"clean:es": "rimraf ./es",
"clean:umd": "rimraf ./dist",
"clean:jsdoc": "rimraf ./jsdoc",
"clean:modules": "rimraf package-lock.json && rimraf node_modules",
"deploy": "gh-pages -d jsdoc --message 'gh-pages update'",
"jsdoc": "npm run clean:jsdoc && npm run build:jsdoc",
"lint": "eslint ./src/",
"predeploy": "npm run jsdoc",
"prepublishOnly": "npm run build && npm run test",
"start": "npm run build:commonjs && node ./scripts/start.js",
"test": "npm run lint && mocha"
},
"typings": "typings/cryptops.d.ts",
"version": "1.0.6"
}