-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "wpi-kkp-crawler",
"version": "1.0.3",
"description": "Fisheries price crawler for wpi.kkp.go.id",
"main": "index.js",
"contributors": [
{
"name": "Ahmad Anshorimuslim",
"email": "ans4175@gmail.com"
}
],
"scripts": {
"precommit": "npm test && git add .",
"test": "jest && npm run eslint",
"eslint": "./node_modules/.bin/eslint --fix libs/*.js *.js",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags"
},
"jest": {
"roots": [
"tests"
]
},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"husky": "^0.13.4",
"jest": "^20.0.4"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:eFishery/wpi-kkp-crawler.git"
},
"keywords": [
"wpi",
"kkp",
"ikan",
"harga"
],
"author": "ans4175",
"license": "MIT",
"homepage": "https://github.com/eFishery/wpi-kkp-crawler",
"dependencies": {
"axios": "^0.16.2"
}
}