-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.25 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": "@makepad/school-names-turkey",
"version": "1.0.0",
"description": "A npm module that scrapes all the school names from turkish education ministry's page",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run lint && npm run compile",
"compile": "node_modules/.bin/tsc",
"prestart": "npm run compile",
"start": "node ./dist/index.js",
"test": "node_modules/.bin/jasmine",
"lint": "node_modules/.bin/eslint . --ext .ts,.tsx --fix",
"all-contributors": "node_modules/.bin/all-contributors"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:Makepad-fr/school-names-turkey.git"
},
"funding": {
"type": "github-sponsors",
"url": "https://github.com/sponsors/Makepad-fr"
},
"keywords": [
"TypeScript",
"puppteer",
"npm module",
"automation",
"Puppeteer"
],
"author": "Makepad Developers <dev@makepad.fr>",
"license": "Apache-2.0",
"dependencies": {
"puppeteer": "^9.1.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/puppeteer": "^5.4.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"jasmine": "^3.5.0",
"typescript": "^4.1.3"
},
"bugs": {
"url": "https://github.com/Makepad-fr/school-names-turkey/issues"
},
"homepage": "https://github.com/Makepad-fr/school-names-turkey#readme"
}