-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.22 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.22 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
{
"name": "median-js-bridge",
"version": "2.16.0",
"description": "Median bridge and utilities for JS web frameworks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node test/bundle.test.js",
"build": "rimraf dist && tsc && rollup -c rollup.config.mjs",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --fix --ext .js,.ts src/",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gonativeio/median-javascript-bridge.git"
},
"keywords": [
"median",
"gonative"
],
"author": {
"name": "Hunaid Hassan",
"email": "hunaid@median.co"
},
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}