-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.92 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
58
59
60
{
"name": "ibridge",
"version": "0.0.5",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/franleplant/ibridge",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepublish": "npm run build",
"build": "yarn build:code && yarn build:types",
"build:code": "webpack --config webpack.config.js",
"build:types": "tsc --project tsconfig.json --emitDeclarationOnly",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx}' '*.{js,json,html}' 'examples/*.html'",
"typecheck": "tsc --noEmit",
"test": "yarn typecheck && yarn test:format && yarn test:lint && yarn test:unit",
"test:unit": "jest src",
"test:lint": "eslint '{src,test}/**/*.{js,jsx,ts,tsx}'",
"test:format": "prettier --check 'src/**/*.{js,jsx,ts,tsx}' '*.{js,json}'",
"test:static": "yarn typecheck && yarn test:lint",
"test-server": "http-server"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@trust/webcrypto": "^0.9.2",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@types/lodash.get": "^4.4.6",
"@types/regenerator-runtime": "^0.13.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-loader": "^8.2.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"regenerator-runtime": "^0.13.7",
"typescript": "^4.1.2",
"webpack": "^5.6.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"@scarf/scarf": "^1.1.0",
"debug": "^4.3.1",
"emittery": "^0.7.2",
"lodash.get": "^4.4.2",
"uuid": "^8.3.1"
}
}