forked from cwilby/edamam-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.3 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
{
"name": "edamam-api",
"version": "0.0.0-development",
"description": "Node.js helper library https://edamam.com",
"keywords": [
"edamam",
"api",
"food",
"nutrition",
"promise"
],
"author": "Cameron Wilby",
"license": "ISC",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cwilby/edamam-node.git"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"commit": "git-cz",
"release": "semantic-release"
},
"dependencies": {
"axios": "^0.21.1",
"deepmerge": "^4.0.0",
"dotenv": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.16",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"semantic-release": "^17.2.3"
},
"jest": {
"setupFiles": [
"dotenv/config"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"tag": "latest"
}
}