-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.31 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "generator-node-mdl",
"version": "0.0.0-semantic-release",
"description": "Create a Node.js module with ease",
"license": "MIT",
"preferGlobal": true,
"repository": "https://github.com/sharvit/generator-node-mdl",
"author": {
"name": "Avi Sharvit",
"email": "sharvita@gmail.com",
"url": "https://sharvit.github.io"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "yarn build:clean && yarn build:babel && yarn build:templates && yarn build:docs",
"build:clean": "rimraf ./app",
"build:babel": "BABEL_ENV=production babel src --out-dir .",
"build:templates": "./scripts/build-templates.sh",
"build:docs": "esdoc -c .esdoc.json",
"develop:docs": "watch \"yarn build:docs\" . --ignoreDirectoryPattern='/node_modules|docs|dist|coverage|.git|.nyc*./'",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"lint:commit": "commitlint -e",
"lint:commit-travis": "commitlint-travis",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"files": [
"app"
],
"dependencies": {
"@octokit/auth-basic": "^1.3.0",
"@octokit/auth-token": "^2.4.0",
"@octokit/rest": "^16.43.1",
"chalk": "^4.0.0",
"command-exists": "^1.2.4",
"find-up": "^4.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"make-dir": "^3.0.0",
"npm-profile": "^5.0.1",
"uuid": "^8.1.0",
"yeoman-generator": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/travis-cli": "^8.3.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"commitizen": "^4.0.3",
"commitlint-config-cz": "^0.13.0",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^3.1.0",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^14.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"semantic-release": "^17.0.2",
"watch": "^1.0.2",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^2.0.0"
},
"jest": {
"testEnvironment": "node",
"modulePaths": [
"<rootDir>/src/app"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/templates/"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"generator-node",
"automate",
"automated",
"easy",
"boilerplate",
"scaffold",
"starter-kit",
"template",
"javascript",
"module",
"node_module",
"node-module",
"node",
"nodejs",
"npm",
"open-source",
"babel",
"eslint",
"jest",
"prettier"
]
}