-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "@ziord/robin",
"version": "0.1.2",
"description": "An XML and HTML processing library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean:test": "rimraf coverage",
"clean:build": "rimraf dist",
"format": "prettier --write src tests *.js",
"check:format": "prettier --check src tests *.js",
"coverage": "npm run clean:test && jest --coverage",
"test": "jest",
"build": "npm run clean:build && tsc",
"lint": "eslint src --ext .ts,.js",
"posttest": "npm run lint && npm run check:format",
"prepublishOnly": "npm test && npm run build"
},
"homepage": "https://github.com/ziord/robin",
"repository": {
"type": "git",
"url": "https://github.com/ziord/robin"
},
"keywords": [
"dom",
"xml",
"html",
"parsing",
"xpath",
"markup",
"scraping"
],
"author": "Jeremiah Ikosin",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^27.5.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"prettier": "2.6.2",
"rimraf": "^3.0.2",
"typescript": "^4.6.3"
}
}