forked from loopbackio/loopback-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 4.21 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
{
"name": "loopback-next",
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-next.git"
},
"version": "0.1.0",
"engines": {
"node": ">=8.9"
},
"author": "IBM Corp.",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/travis-cli": "^7.5.0",
"@types/mocha": "^5.0.0",
"coveralls": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.0.0",
"lerna": "^3.13.3",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
},
"scripts": {
"postinstall": "lerna bootstrap",
"update-packages": "npm run -s update-package-locks && npm run -s update-greenkeeper-json",
"prerelease": "npm run build:full && npm run mocha && npm run lint",
"release": "lerna version && lerna publish from-git --yes",
"update-package-locks": "lerna clean && lerna bootstrap --no-ci",
"update-template-deps": "node bin/update-template-deps -f",
"update-greenkeeper-json": "node bin/update-greenkeeper-json -f",
"update-all-deps": "npm update && lerna exec -- npm update && npm run update-package-locks",
"sync-dev-deps": "node bin/sync-dev-deps",
"version": "npm run update-packages && git add greenkeeper.json \"**/package-lock.json\" && npm run update-template-deps && npm run apidocs",
"outdated": "npm outdated --depth 0 && lerna exec --no-bail \"npm outdated --depth 0\"",
"apidocs": "node bin/run-lerna run build:apidocs",
"coverage:ci": "node packages/build/bin/run-nyc report --reporter=text-lcov | coveralls",
"precoverage": "npm test",
"coverage": "open coverage/index.html",
"lint": "npm run prettier:check && npm run tslint && node bin/check-package-locks",
"lint:fix": "npm run tslint:fix && npm run prettier:fix",
"tslint": "node packages/build/bin/run-tslint --project tsconfig.json",
"tslint:fix": "npm run tslint -- --fix",
"prettier:cli": "node packages/build/bin/run-prettier \"**/*.ts\" \"**/*.js\" \"**/*.md\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"clean": "lerna run clean && node packages/build/bin/run-clean \"packages/*/dist\" \"examples/*/dist\" \"benchmark/dist\"",
"clean:lerna": "lerna clean",
"build": "node bin/run-lerna run build",
"build:full": "npm run clean:lerna && npm install && npm run clean && npm run build",
"pretest": "npm run clean && npm run build",
"test": "node packages/build/bin/run-nyc npm run mocha --scripts-prepend-node-path",
"test:ci": "node packages/build/bin/run-nyc npm run mocha --scripts-prepend-node-path",
"verify:docs": "npm run build:site -- --verify",
"build:site": "./bin/build-docs-site.sh",
"mocha": "node packages/build/bin/run-mocha \"packages/*/dist/__tests__/**/*.js\" \"examples/*/dist/__tests__/**/*.js\" \"packages/cli/test/**/*.js\" \"packages/build/test/*/*.js\"",
"posttest": "npm run lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"copyright.owner": "IBM Corp.",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"greenkeeper": {
"commitMessages": {
"initialBadge": "docs: add Greenkeeper badge",
"initialDependencies": "chore: update dependencies",
"initialBranches": "chore: whitelist greenkeeper branches",
"dependencyUpdate": "chore: update ${dependency} to version ${version}",
"devDependencyUpdate": "chore: update ${dependency} to version ${version}",
"lockfileUpdate": "chore: update lockfile ${lockfilePath}",
"dependencyPin": "chore: pin ${dependency} to ${oldVersion}",
"devDependencyPin": "chore: pin ${dependency} to ${oldVersion}"
},
"prTitles": {
"initialPR": "[greenkeeper] update dependencies to enable Greenkeeper",
"initialPrBadge": "[greenkeeper] add badge to enable Greenkeeper",
"initialPrBadgeOnly": "[greenkeeper] add Greenkeeper badge",
"initialSubgroupPR": "[greenkeeper] update dependencies for ${group}",
"basicPR": "[greenkeeper] update ${dependency} to the latest",
"groupPR": "[greenkeeper] update ${dependency} in group ${group} to the latest"
}
}
}