-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "open-watch-ckan",
"version": "1.0.2",
"description": "JavaScript Library For Interfacing with CKAN APIs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepare" : "npm run build",
"prepublishOnly" : "npm test",
"version" : "git add -A src",
"postversion" : "git push && git push --tags",
"postpublish" : "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProvinceWatch/open-watch-ckan.git"
},
"author": "oscj",
"keywords": ["CKAN"],
"license": "ISC",
"bugs": {
"url": "https://github.com/ProvinceWatch/open-watch-ckan/issues"
},
"homepage": "https://github.com/ProvinceWatch/open-watch-ckan#readme",
"dependencies": {
"axios": "^1.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.3",
"chai": "^4.3.7",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}