forked from openfoodfacts/openfoodfacts-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.19 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
{
"name": "openfoodfacts-nodejs",
"version": "0.0.1",
"description": "Open Food Facts API NodeJS Wrapper",
"main": "main.js",
"scripts": {
"lint": "standard",
"commitmsg": "commitlint -quiet=0 --extends=@commitlint/config-conventional -e",
"precommit": "standard `git diff --name-only --staged --relative | grep '.js$'` nothing",
"fix": "standard --fix",
"test": "mocha",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ms10398/openfoodfacts-nodejs.git"
},
"keywords": [
"OFF",
"OpenFoodFacts",
"NodeJS",
"Wrapper"
],
"author": "openfoodfacts",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ms10398/openfoodfacts-nodejs/issues"
},
"homepage": "https://github.com/ms10398/openfoodfacts-nodejs#readme",
"dependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.1",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@commitlint/cli": "^6.1.0",
"@commitlint/config-conventional": "^6.1.0",
"all-contributors-cli": "^4.10.1",
"husky": "^0.14.3",
"standard": "^10.0.3"
}
}