-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.47 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
{
"name": "@negebauer/js-template",
"description": "A js project template",
"license": "MIT",
"author": "Nicolas Gebauer <hello@negebauer.com> (https://negebauer.com)",
"homepage": "https://negebauer.com",
"repository": "git@github.com:negebauer/js-template.git",
"bugs": {
"url": "https://github.com/negebauer/js-template/issues"
},
"version": "1.0.1",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"lint:package": "prettier-package-json --write package.json",
"release": "standard-version",
"postrelease": "git push --follow-tags && yarn publish --non-interactive --access public",
"start": "NODE_ENV=production node src/index.js",
"test": "jest",
"test:coverage": "yarn test --coverage",
"test:coverage:upload": "cat coverage/lcov.info | coveralls",
"test:dev": "yarn test --watch"
},
"dependencies": {},
"devDependencies": {
"@negebauer/eslint-config-base": "^1.2.0",
"@negebauer/prettier-config": "^1.0.3",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"prettier-package-json": "^2.1.3",
"standard-version": "^8.0.1"
}
}