-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 875 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 875 Bytes
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
{
"name": "crypsi.js",
"version": "1.0.2",
"description": "CrypsiJs (Crypto utilities for React and Web Browsers)",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build:ts": "npx tsc",
"build:browser:dev": "webpack --mode=development",
"build:browser:prod": "webpack --mode=production",
"lint": "eslint . --ext .ts",
"prettier-format": "prettier --config .prettierrc '*.ts' 'lib/**/*.ts' --write",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"prettier": "^2.8.2",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}