-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
94 lines (94 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "rawkit",
"version": "1.5.0",
"description": "Open chrome devtools debugger",
"bin": {
"rawkit": "index.js"
},
"main": "index.js",
"scripts": {
"test": "mocha ./test/index.test.js",
"lint": "eslint .",
"ext:bundle": "node ./scripts/bundle.js",
"ext:publish": "source .env && cd ./src/ && webstore upload --source=../dist/build-$npm_package_version.zip --auto-publish --extension-id $WS_ID --client-id $WS_CLIENT_ID --client-secret $WS_CLIENT_SECRET --refresh-token $WS_REFRESH_TOKEN",
"ext:edit": "open https://chrome.google.com/webstore/developer/dashboard",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darcyclarke/rawkit.git"
},
"devDependencies": {
"alex": "^8.1.1",
"archiver": "^3.1.1",
"babel-core": "6.26.3",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "6.24.1",
"bdd-stdin": "0.2.0",
"chai": "4.2.0",
"chrome-launcher": "^0.13.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"mocha": "7.1.0",
"pre-git": "3.17.1",
"standard-version": "7.1.0"
},
"keywords": [
"inspect",
"node",
"devtools",
"developer",
"tools",
"open",
"opn",
"chrome",
"debug",
"node",
"debugger",
"browser",
"inspector",
"fast"
],
"author": "Darcy Clarke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/darcyclarke/rawkit/issues"
},
"homepage": "https://github.com/darcyclarke/rawkit#readme",
"config": {
"commit-msg": "conventional",
"pre-git": {
"pre-push": [
"echo 'Pre-push checks...' && exit 0",
"npm run lint",
"npm test",
"NODE_ENV=production"
]
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"deep-extend": "^0.6.0",
"extend": "^3.0.2",
"getos": "^3.1.5",
"opn": "6.0.0",
"semver": "^7.1.3",
"yargs": "15.3.0",
"snyk": "^1.298.1"
},
"release": {
"analyzeCommits": "simple-commit-message"
},
"snyk": true
}