-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "@grabjs/mobile-kit-bridge-sdk",
"version": "2.2.2",
"description": "SDK for mobile kit bridge to offer unified method signatures for Android/iOS.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"repository": "https://github.com/grab/mobile-kit-bridge-sdk",
"author": "Viet Hai Pham <viethai.pham@grabtaxi.com>",
"maintainers": [
"Viet Hai Pham <viethai.pham@grabtaxi.com>",
"Naman Aggarwal <naman.aggarwal@grabtaxi.com>",
"Arun Sundaramurthy <arun.sundaramurthy@grabtaxi.com>"
],
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.6",
"bluebird": "^3.5.3",
"expect.js": "^0.3.1",
"mocha": "^6.1.2",
"mocha-typescript": "^1.1.17",
"prettier": "^1.19.1",
"prettier-tslint": "^0.4.2",
"rollup": "^1.7.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.20.1",
"rollup-plugin-uglify": "^6.0.2",
"ts-node": "^8.0.3",
"tslint-config-airbnb": "^5.11.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.3.3333"
},
"scripts": {
"test": "mocha -r ts-node/register **/*.test.ts",
"build": "rm -rf dist && rollup -c",
"watch": "rollup -cw",
"prepublishOnly": "npm run build"
},
"keywords": [
"webview",
"android",
"ios"
]
}