-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "chrome-web-store-item-property",
"description": "Gather meta information from chrome web store",
"version": "1.2.0",
"author": {
"name": "sanemat",
"email": "[email protected]",
"url": "sane.jp"
},
"dependencies": {
"array-includes": "^3.0.3",
"create-error-class": "^3.0.0",
"es6-promise": "^4.2.8",
"htmlparser2": "^4.0.0",
"is-ok": "^1.0.1",
"node-status-codes": "^3.0.0",
"object-assign": "^4.1.1",
"request": "^2.88.0"
},
"devDependencies": {
"browserify": "^16.5.0",
"conventional-changelog-cli": "^2.0.25",
"derequire": "^2.0.0",
"eslint": "^6.6.0",
"espower-loader": "^1.2.2",
"fixpack": "^2.2.0",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"npm-check-updates": "^3.1.26",
"power-assert": "^1.6.1",
"promise-test-helper": "^0.2.1"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"index.js",
"build",
"src"
],
"keywords": [
"api",
"chrome",
"chrome-app",
"chrome-extension",
"chrome-theme",
"chrome-web-store",
"itemprop",
"meta",
"web-store",
"webstore"
],
"license": "MIT",
"repository": "pandawing/node-chrome-web-store-item-property",
"scripts": {
"build:browser": "npm update && npm prune && npm dedupe && browserify --standalone chromeWebStoreItemProperty ./index.js | derequire > build/chrome-web-store-item-property.js",
"changelog": "conventional-changelog --infile changelog.md --same-file --preset angular",
"eslint": "eslint --ignore-path .gitignore ./example ./src ./test index.js",
"fixpack": "fixpack",
"git:tag": "git tag v${npm_package_version}",
"lint": "npm run eslint",
"ncu": "ncu -u",
"test": "mocha --require ./enable-power-assert.js -- ./test/*test.js",
"verify": "npm run lint && npm run test"
}
}