-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.06 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
60
61
62
63
64
{
"name": "@malereg/aowatch-client",
"version": "1.3.3",
"description": "Abgeordnetenwatch TypeScript/JavaScript API client for Browser, Node and Typescript",
"main": "./dist-node/aowatch-client.js",
"exports": {
".": "./dist-node/aowatch-client.js",
"./entities/": "./dist-node/entities/",
"./list-all": "./dist-node/list-all.js",
"./extract-links": "./dist-node/extract-links.js"
},
"keywords": [
"bundestag",
"opendata",
"abgeordnetenwatch",
"politics",
"api",
"client"
],
"scripts": {
"test": "./node_modules/ts-mocha/bin/ts-mocha -p ./tsconfig.json ./__test__/*.test.ts",
"version": "auto-changelog -p && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm run build:docs && npm run gh-pages",
"build:node": "tsc --p ./tsconfig.node.json",
"build:web": "webpack && cp ./dist/aowatch-client-bundle.js ./dist-web/aowatch-client-bundle.js",
"build:dist": "npm run build:node && npm run build:web",
"postbuild:dist": "git commit dist-web dist-node -m 'chore: update dist' && git push",
"build:docs": "typedoc src/* --includeVersion",
"gh-pages": "node ./script/gh-pages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/maschinenlesbareregierung/aowatch-client.git"
},
"homepage": "https://maschinenlesbareregierung.github.io/aowatch-client/",
"author": "Sebastian Schürmann",
"license": "MIT",
"devDependencies": {
"@microsoft/tsdoc": "^0.12.24",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/qs": "^6.9.5",
"auto-changelog": "^2.2.1",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"shx": "^0.3.3",
"ts-loader": "^8.0.13",
"ts-mocha": "^8.0.0",
"typed-emitter": "^1.3.1",
"typedoc": "^0.20.13",
"typescript": "^4.1.3",
"webpack": "^4.4.2",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@types/node": "^14.14.12",
"axios": "^0.21.0",
"cheerio": "^1.0.0-rc.5",
"gh-pages": "^3.1.0",
"promise-pool-executor": "^1.1.1",
"qs": "^6.9.4"
}
}