-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.42 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": "@youngapp/yap-cli",
"version": "1.0.7",
"description": "Yap CLI",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bin": {
"test": "dist/apitest/index.js",
"create": "dist/createproject/index.js"
},
"directories": {
"doc": "docs"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"files": [
"dist",
"dist/createproject/projectstructure",
"docs",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "rm -rf dist && ./node_modules/.bin/tsc && cp -r ./src/createproject/projectstructure ./dist/createproject/projectstructure ",
"test": "ENV=local mocha -r ts-node/register test/**/*.test.ts --timeout 30000 --watch-extensions ts --watch",
"test:integration": "nyc mocha -r ts-node/register test/**/*.test.ts",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"coverage": "nyc report --reporter=text-lcov",
"release": "standard-version --no-verify --commit-all --release-as minor --git-tag-fallback false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/youngapp/yap-cli.git"
},
"keywords": [
"youngapp",
"core",
"cli"
],
"author": "Oleksandr Koreniuk",
"bugs": {
"url": "https://github.com/youngapp/yap-cli/issues"
},
"homepage": "https://github.com/youngapp/yap-cli#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"standard-version": {
"scripts": {
"postbump": "git add package.json",
"precommit": "echo \"chore(release): [skip ci]\""
}
},
"dependencies": {
"@types/faker": "^4.1.9",
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/mv": "^2.1.0",
"@types/ncp": "^2.0.3",
"@types/node": "^13.1.6",
"@types/rimraf": "^2.0.3",
"faker": "^4.1.0",
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"mocha": "^7.0.0",
"mv": "^2.1.1",
"ncp": "^2.0.0",
"rimraf": "^3.0.0"
},
"devDependencies": {
"@types/sinon": "^7.5.1",
"commitlint": "^8.3.4",
"husky": "^4.0.7",
"nyc": "^15.0.0",
"sinon": "^8.0.4",
"ts-node": "^8.6.2",
"tsc": "^1.20150623.0",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
}
}