forked from ksky521/chobitsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "@ksky521/chobitsu",
"version": "0.3.1",
"description": "Chrome devtools protocol JavaScript implementation",
"main": "dist/chobitsu.js",
"scripts": {
"ci": "npm run lint && npm test && npm run build",
"dev": "webpack --mode=development -w",
"build": "webpack --mode=production && node script/build.js",
"lint": "tslint src/**/*.ts",
"test": "karma start",
"format": "lsla prettier src/**/*.ts *.{js,json} test/*.js script/*.js --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/chobitsu.git"
},
"keywords": [
"devtools"
],
"author": "redhoodsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liriliri/chobitsu/issues"
},
"homepage": "https://github.com/liriliri/chobitsu#readme",
"dependencies": {},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/node": "^14.0.13",
"karma": "^5.1.0",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-webpack": "^4.0.2",
"licia": "^1.26.0",
"mocha": "^8.0.1",
"ts-loader": "^7.0.5",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}