-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "typescript-module-boilerplate",
"version": "2.0.0",
"author": {
"name": "Clement Berthou",
"email": "[email protected]"
},
"engines" : { "node" : ">=15" },
"scripts": {
"test": "yarn jest --detectOpenHandles",
"typecheck": "yarn tsc --project ./tsconfig-typecheck.json",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build": "./scripts/build.sh",
"prepublish": "npm run build"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@peculiar/webcrypto": "^1.1.4",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-typescript": "^3.0.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^26.0.1",
"jest-environment-jsdom": "^26.6.2",
"jest-environment-node": "^26.6.2",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"hybrid-crypto-js": "^0.2.4"
}
}