-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "reperio",
"version": "0.0.4",
"description": "Fast HTML scrapper and reader",
"author": "Burlet Mederic <[email protected]>",
"repository": "https://github.com/crimson-med/reperio.git",
"license": "GPL-3.0-only",
"private": false,
"dependencies": {
"needle": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/needle": "^2.5.3",
"@types/node": "^17.0.27",
"jest": "^27.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"main": "lib/Parser.js",
"types": "lib/Parser.d.ts",
"scripts": {
"build": "tsc --project tsconfig.deploy.json",
"clean": "rm -rf lib/*",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"patch": "npm version patch && npm publish --access public",
"test": "jest --config jest.json"
},
"files": [
"lib/**/*"
]
}