-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.57 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": "techcheck",
"version": "0.0.2",
"description": "Project Setup & Dependency Verification Tools",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/mike-works/techcheck"
},
"scripts": {
"build": "scripty",
"build:ts": "scripty",
"build:prod": "scripty",
"build:watch": "scripty",
"build:prod:watch": "scripty",
"lint:ts": "tslint -p tsconfig.json",
"start": "./node_modules/.bin/ts-node src/index.ts",
"watch": "scripty",
"test": "scripty",
"test:ci": "scripty",
"test:watch": "scripty",
"prepare-release": "scripty",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"engines": {
"node": ">= 0.10"
},
"bin": {
"techcheck": "./bin/techcheck.js"
},
"author": "Mike North <michael.l.north@gmail.com> (https://mike.works)",
"license": "GPL-3.0",
"dependencies": {
"chalk": "^1.1.3",
"es6-promise": "^4.2.2",
"semver": "^5.4.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.37",
"@commitlint/cli": "7.5.0",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/travis-cli": "7.5.0",
"@types/chai": "^4.0.10",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash.assign": "^4.2.3",
"@types/lodash.difference": "^4.5.3",
"@types/mocha": "^2.2.45",
"@types/node": "^9.3.0",
"@types/semver": "^5.4.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"concurrently": "^3.5.1",
"husky": "1.1.4",
"lodash.camelcase": "^4.3.0",
"mocha": "^4.0.1",
"mocha-typescript": "^1.1.12",
"nodemon": "^1.14.11",
"rollup": "^0.54.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-hash": "^1.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.10.0",
"rollup-plugin-uglify": "^2.0.1",
"scripty": "^1.7.2",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"tslint": "5.11.0",
"tslint-config-airbnb": "^5.4.2",
"typescript": "2.9.2",
"@mike-north/js-lib-renovate-config": "1.0.0",
"@mike-north/js-lib-semantic-release-config": "0.0.0-development",
"semantic-release": "^15.10.8",
"travis-deploy-once": "^5.0.9"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "./node_modules/.bin/commitlint -e $HUSKY_GIT_PARAMS"
}
},
"release": {
"extends": "@mike-north/js-lib-semantic-release-config"
}
}