-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.52 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
92
93
94
95
{
"name": "counsel",
"version": "0.0.0-semantic-release",
"description": "the end of boilerplate. automatically bake structure, opinions, and business rules into projects",
"main": "src/counsel.js",
"bin": "src/bin.js",
"license": "MIT",
"scripts": {
"build": "tsc && chmod ug+rx src/bin.js",
"docs:readme": "node scripts/readme && git add readme.md",
"clean": "del website/src/**/*.js*",
"format": "prettier-standard '{src,test,website,scripts}/**/*.{ts,tsx}' --write",
"lint": "standard '{src,test,website,scripts}/**/*.{ts,tsx}' --fix",
"lint-staged": "lint-staged",
"precommit": "run-p docs:readme lint-staged",
"test": "NODE_ENV=test nyc ava --timeout 10s --tap test/**/*.test.js && nyc report --reporter=lcov"
},
"keywords": [
"project",
"management",
"rule",
"team"
],
"author": "cdaringe",
"dependencies": {
"bluebird": "^3.5.3",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"node-eval": "^2.0.0",
"prompt-checkbox": "^2.2.0",
"resolve": "^1.9.0",
"semver": "^5.6.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@types/bluebird": "^3.5.25",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.119",
"@types/meow": "^5.0.0",
"@types/node": "^10.12.18",
"@types/semver": "^5.5.0",
"@typescript-eslint/parser": "^1.2.0",
"ava": "^1.2.0",
"del-cli": "^1.1.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"npm-run-all": "^4.0.2",
"nyc": "^11.1.0",
"perish": "^1.0.2",
"prettier-standard": "^9",
"semantic-release-cli": "^4.1.0",
"standard": "^12.0.1",
"svg-term-cli": "^2.1.1",
"typescript": "^3.2.4"
},
"peerDependencies": {
"typescript": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdaringe/counsel.git"
},
"homepage": "https://cdaringe.github.io/counsel/",
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"typescript"
],
"ignore": [
"**/*.d.ts"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"linters": {
"'{src,scripts,test}/**/*.{js,jsx,ts,tsx}'": [
"npm run format",
"npm run lint",
"git add"
]
}
}
}