-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.24 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
{
"name": "extract-from-document",
"version": "1.1.0",
"description": "Simplify data extraction from document",
"main": "dist/public_api.js",
"types": "dist/public_api.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"removeDist": "rm -rf dist",
"build": "npm run removeDist && tsc -p tsconfig.json",
"check": "npm i && npm run build && npm run lint && npm run test",
"check:all": "npm run check && npm outdated",
"release": "npm run check && npm publish",
"test": "jest -c jest.config.js",
"test:integration": "jest -c jest.config.integration.js",
"test:unit": "jest -c jest.config.unit.js",
"testing": "jest -c jest.config.unit.js --watch --coverage false"
},
"repository": {
"type": "git",
"url": "git://github.com/hakier/extract-from-document.git"
},
"readmeFilename": "README.md",
"keywords": [
"dom",
"crawler",
"extract",
"document"
],
"author": "hakier <hakier29a@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.12",
"@types/puppeteer": "^1.11.1",
"jest": "^23.6.0",
"puppeteer": "^1.11.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.2"
}
}