forked from liriliri/chobitsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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": "chobitsu",
"version": "0.3.3",
"description": "Chrome devtools protocol JavaScript implementation",
"main": "dist/chobitsu.js",
"scripts": {
"ci": "npm run lint && npm test && npm run build && npm run es5",
"dev": "webpack --mode=development -w",
"build": "webpack --mode=production && node script/build.js",
"lint": "tslint src/**/*.ts",
"test": "karma start",
"es5": "es-check es5 dist/chobitsu.js",
"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",
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/node": "^14.0.13",
"babel-loader": "^8.2.5",
"es-check": "^6.2.1",
"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-es": "^1.32.2",
"luna-dom-highlighter": "^0.3.2",
"mocha": "^8.0.1",
"raw-loader": "^4.0.2",
"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"
}
}