-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.51 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
{
"name": "northbrook",
"description": "Manage your projects with the power of NPM",
"version": "3.3.0",
"author": "Tylor Steinberger <tlsteinberger167@gmail.com>",
"bin": {
"nb": "bin/northbrook.js",
"northbrook": "bin/northbrook.js"
},
"bugs": {
"url": "https://github.com/northbrookjs/northbrookjs/issues"
},
"config": {
"ghooks": {
"commit-msg": "node ./node_modules/.bin/validate-commit-msg"
}
},
"dependencies": {
"app-module-path": "^2.1.0",
"findup-sync": "^0.4.3",
"mkdirp": "^0.5.1",
"ramda": "^0.22.1",
"reginn": "^2.1.3",
"semver": "^5.3.0",
"ts-node": "^1.7.0",
"typed-colors": "^1.0.0",
"typed-figures": "^1.0.0",
"typed-prompts": "^1.4.0"
},
"devDependencies": {
"@motorcycle/tslint": "^1.2.0",
"@types/findup-sync": "^0.3.29",
"@types/minimist": "^1.1.29",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.49",
"@types/ramda": "0.0.2",
"@types/semver": "^5.3.30",
"commitizen": "^2.8.6",
"conventional-changelog-cli": "^1.2.0",
"cz-conventional-changelog": "^1.2.0",
"ghooks": "^1.3.2",
"mocha": "^3.1.2",
"rimraf": "^2.5.4",
"stdio-mock": "^1.0.1",
"ts-node": "^1.7.0",
"tslint": "^4.0.1",
"typescript": "^2.2.0-dev.20161129",
"validate-commit-msg": "^2.8.2"
},
"homepage": "https://github.com/northbrookjs/northbrookjs#readme",
"keywords": [
"build",
"cli",
"comver",
"github",
"lerna",
"monorepo",
"northbrook",
"reginn",
"semver",
"test"
],
"license": "MIT",
"main": "northbrook/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/northbrookjs/northbrookjs.git"
},
"scripts": {
"build": "rimraf northbrook plugins && tsc",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --release-count 0 --preset angular",
"commit": "git-cz",
"postchangelog": "git add CHANGELOG.md && git commit -m 'docs(CHANGELOG): append to changelog'",
"postversion": "npm run changelog && git push origin master --tags && npm publish",
"preversion": "npm run build",
"release:major": "npm version major -m 'chore(package): v%s'",
"release:minor": "npm version minor -m 'chore(package): v%s'",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "tslint src/**/**/*.ts src/**/*.ts src/*.ts",
"test:unit": "TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register test/*.ts"
},
"typings": "lib/index.d.ts"
}