-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "create-js-package",
"version": "1.2.1",
"description": "Create a JS package with es6, testing, linting, and publication tools included",
"main": "index.js",
"bin": {
"create-js-package": "bin/create-js-package.js"
},
"scripts": {
"start": "node src",
"start:watch": "nodemon src",
"test": "jest test --collectCoverage --ci",
"test:watch": "jest test --watchAll --notify",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prerelease": "npm run lint && npm test",
"release:patch": "npm run prerelease && changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push --follow-tags",
"release:minor": "npm run prerelease && changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push --follow-tags",
"release:major": "npm run prerelease && changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jramcast/create-js-package.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jramcast/create-js-package/issues"
},
"homepage": "https://github.com/jramcast/create-js-package#readme",
"keywords": [
"boilerplate",
"generator",
"create",
"testing",
"linting",
"publication",
"jest",
"eslint",
"prettier"
],
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.14.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.4.0",
"generate-changelog": "^1.6.0",
"jest": "^21.2.1",
"nodemon": "^1.18.10",
"prettier": "^1.9.2",
"sinon": "^4.1.2"
},
"dependencies": {
"fs-extra": "^4.0.2",
"yargs": "^10.0.3"
},
"jest": {
"testMatch": [
"<rootDir>/test/**/*.js"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50
}
}
}
}