-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "create-ecma-app",
"version": "0.5.0",
"description": "Project to generate a boilerplate with ecma6 configured like create-react-app",
"main": "index.js",
"bin": {
"create-ecma-app": "./index.js"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"release:patch": "standard-version --release-as patch && git push origin master --tag && npm publish",
"release:minor": "standard-version --release-as minor && git push origin master --tag && npm publish",
"release:major": "standard-version --release-as major && git push origin master --tag && npm publish"
},
"files": [
"src",
"index.js"
],
"keywords": [
"create",
"generator",
"ecma",
"babel",
"boilerplate"
],
"author": "Tacnoman <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"commander": "^4.1.0",
"semver": "^7.1.2",
"yeoman-environment": "^2.7.0",
"yeoman-generator": "^4.5.0",
"yo": "^3.1.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"standard-version": "^8.0.1"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/src/templates/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/tacnoman/create-ecma-app"
}
}