-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.65 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
53
54
55
56
57
58
{
"name": "pcap-ws-parse",
"version": "1.0.3",
"description": "websocket and http application pcap parser for javascript(browser and node), code with typescript",
"module": "dist/index.esm.js",
"main": "dist/index.cjs.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "jest",
"cov": "rimraf coverage && jest --coverage",
"lint": "eslint src/**/*.*",
"build": "tsc && npm run rollup",
"rollup": "rollup -c rollup.config.js",
"prebuild": "rimraf dist types && npm run ci",
"ci": "npm run lint && npm run test",
"prepublishOnly": "npm run build",
"pub-beta": "npm publish --tag=beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HowGraceU/pcap-ws-parse.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HowGraceU/pcap-ws-parse/issues"
},
"homepage": "https://github.com/HowGraceU/pcap-ws-parse#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
}
}