-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.04 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
{
"name": "quickits-hybrid-jsbridge",
"version": "1.0.1",
"description": "A hybird js brdige",
"main": "./dist/src/ts/JSBridge.js",
"types": "./dist/src/ts/JSBridge.d.ts",
"typings": "./dist/src/ts/JSBridge.d.ts",
"scripts": {
"server": "lite-server -c bs-config.json",
"prepare": "npm run rebuild",
"build": "tsc -p .",
"rebuild": "npm run clean && npm run lint && npm run build",
"clean": "rm -rf dist",
"lint": "tslint --project ./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Gavin Liu",
"license": "ISC",
"homepage": "https://github.com/Quickits/Hybrid-JSBridge",
"repository": {
"type": "git",
"url": "git+https://github.com/Quickits/Hybrid-JSBridge.git"
},
"devDependencies": {
"browserify": "^16.3.0",
"gulp": "^4.0.2",
"gulp-hash": "^4.2.2",
"gulp-typescript": "^5.0.1",
"gulp-util": "^3.0.8",
"lite-server": "^2.5.3",
"tsify": "^4.0.1",
"typescript": "^3.5.3",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.1"
}
}