-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "@democracy-deutschland/scapacra",
"version": "1.0.6",
"description": "Scapacra (Scraper Parser Crawler)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "DEMOCRACY Deutschland e.V.",
"homepage": "https://github.com/demokratie-live/scapacra#readme",
"keywords": [],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/demokratie-live/scapacra.git"
},
"scripts": {
"build": "tsc",
"link": "cd dist && yarn link",
"dev": "nodemon .\\src\\Example.ts",
"lint": "tslint --project tsconfig.json && yarn typecheck",
"typecheck": "tsc --noEmit",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"prepare": "yarn run build"
},
"bugs": {
"url": "https://github.com/demokratie-live/scapacra/issues"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.7",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.0"
},
"dependencies": {
"@types/xml2js": "^0.4.5",
"@types/xmldom": "^0.1.29",
"typescript": "^3.6.3",
"xml2js": "^0.4.22",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
}
}