-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 998 Bytes
/
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
{
"name": "check-for-update",
"version": "1.0.3",
"description": "Check for update manually or at configured interval with minimum configuration",
"main": "dist/lib.js",
"scripts": {
"test": "standard",
"build": "babel lib.js --out-dir ./dist --presets=es2015",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harshjv/check-for-update.git"
},
"author": "Harsh Vakharia <harshjv@gmail.com> (https://harshjv.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/harshjv/check-for-update/issues"
},
"homepage": "https://github.com/harshjv/check-for-update#readme",
"dependencies": {
"parse-github-repo-url": "^1.4.0",
"request": "^2.79.0",
"semver": "^5.3.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"debug": "^2.6.2",
"standard": "^8.6.0"
},
"standard": {
"ignore": [
"/dist"
]
}
}