-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
{
"name": "@hippy/vanilla-js-devtools",
"version": "0.1.11",
"description": "Chrome devtools protocol JavaScript implementation",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"ci": "npm run lint && npm test && npm run build",
"dev": "cross-env NODE_ENV=development rimraf dist && webpack --mode=development -w",
"build": "cross-env NODE_ENV=production rimraf dist && webpack --mode=production",
"stat": "cross-env NODE_ENV=stat rimraf dist && webpack --mode=production",
"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/hippy-contrib/js-devtools.git"
},
"keywords": [
"hippy",
"devtools"
],
"author": "[email protected]",
"license": "MIT",
"homepage": "http://hippyjs.org",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/node": "^14.0.13",
"cross-env": "^7.0.3",
"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",
"rimraf": "^3.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-bundle-analyzer": "^4.5.0",
"webpack-cli": "^3.3.11"
}
}