This repository was archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 KB
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": "ci-npm-update",
"version": "2.0.0",
"description": "Keep NPM dependencies up-to-date with CI, providing version-to-version diff for each library",
"repository": {
"type": "git",
"url": "git@github.com:bitjourney/ci-npm-update.git"
},
"main": "index.js",
"bin": "bin/ci-npm-update",
"scripts": {
"dry-run": "npm run build && bin/ci-npm-update",
"preversion": "npm test",
"postpublish": "git push origin master && git push origin --tags",
"setup": "npm install && npm dedupe",
"build": "npm run lint && tsc",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "tslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"test": "TS_NODE_PROJECT=test/tsconfig.json mocha --opts test/support/default.opts test/**/*.test.ts"
},
"keywords": [
"npm",
"update",
"github",
"ci"
],
"author": "FUJI Goro",
"license": "Apache-2.0",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.0.0"
},
"dependencies": {
"@types/node": "^6.0.41",
"moment": "^2.14.1",
"source-map-support": "^0.4.15",
"request": "^2.74.0"
},
"devDependencies": {
"@types/mocha": "*",
"@types/power-assert": "*",
"espower-typescript": "^8.0.0",
"mocha": "*",
"power-assert": "*",
"to-iso-string": "*",
"ts-node": "*",
"tslint": "^5.4.3",
"typescript": "*"
}
}