generated from negebauer/js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "@negebauer/huginn-javascript-agents",
"description": "A js project template",
"license": "MIT",
"author": "Nicolas Gebauer <[email protected]> (https://negebauer.com)",
"homepage": "https://negebauer.com",
"repository": "[email protected]:negebauer/huginn-javascript-agents.git",
"bugs": {
"url": "https://github.com/negebauer/huginn-javascript-agents/issues"
},
"version": "0.0.1",
"scripts": {
"build": "webpack",
"build:dev": "yarn build --watch",
"deploy": "NODE_ENV=production node src/deploy.js",
"deploy:build-dev": "yarn deploy:dev --watch dist --watch src/deploy.js",
"deploy:dev": "nodemon src/deploy.js",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"lint:package": "prettier-package-json --write package.json",
"release": "standard-version",
"postrelease": "git push --follow-tags",
"test": "jest",
"test:coverage": "yarn test --coverage",
"test:coverage:upload": "cat coverage/lcov.info | coveralls",
"test:dev": "yarn test --watch"
},
"dependencies": {
"axios": "^0.19.2"
},
"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",
"prettier": "^1.19.1",
"prettier-package-json": "^2.1.3",
"standard-version": "^8.0.1",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}