-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "saph-browser",
"version": "1.3.1",
"description": "Stupid Algorithm for Password Hashing (WebCrypto implementation)",
"keywords": [
"password",
"hashing",
"cryptography"
],
"homepage": "https://github.com/socram8888/saph-browser",
"bugs": {
"url": "https://github.com/socram8888/saph-browser/issues",
"email": "[email protected]"
},
"license": "WTFPL",
"author": {
"name": "Marcos Del Sol Vives",
"email": "[email protected]",
"url": "https://orca.pet"
},
"files": [
"dist/"
],
"main": "dist/saph.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "github:socram8888/saph-browser",
"scripts": {
"prepare": "npm run clean && npm run lint && npm run compile && npm test",
"compile": "npm run compile-es && npm run compile-umd",
"compile-es": "node node_modules/typescript/bin/tsc",
"compile-umd": "node node_modules/webpack/bin/webpack.js",
"test": "node node_modules/mocha/bin/mocha",
"lint": "node node_modules/eslint/bin/eslint.js src/**/*.ts",
"clean": "npx rimraf dist"
},
"dependencies": {},
"devDependencies": {
"@types/assert": "^1.5.4",
"@types/btoa": "^1.2.3",
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"assert": "^2.0.0",
"btoa": "^1.2.1",
"eslint": "^7.28.0",
"mocha": "^9.0.0",
"node-webcrypto-ossl": "^2.1.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
}
}