-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.17 KB
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
{
"name": "auto-open-api",
"version": "1.0.0",
"description": "auto-open-api",
"main": "build/index.js",
"watch": {
"compile-ts": {
"patterns": [
"src"
],
"extensions": "ts"
},
"copy-static-files": {
"patterns": [
"src"
],
"extensions": [
"json",
"html",
"js",
"png"
]
}
},
"scripts": {
"dev": "npm-watch",
"copy-static-files": "rsync -zarv $(find ./src -print | grep 'json\\|html\\|js\\|png') ./dist",
"lint": "prettier --ignore-path .gitignore . -w",
"compile": "tsc --sourceMap",
"clean": "rm -rf dist,.idea,node_modules",
"test": "jest"
},
"author": "Leonardo Vogel Dalcin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/leonardodalcin/chrome-open-api-generetor.git"
},
"dependencies": {
"generate-schema": "^2.6.0",
"openapi-types": "^7.0.0"
},
"devDependencies": {
"@types/chrome": "0.0.125",
"@types/jest": "^26.0.15",
"jest": "^26.6.1",
"npm-watch": "^0.7.0",
"prettier": "^2.2.0",
"ts-jest": "^26.4.2",
"ts-loader": "^8.0.7",
"typescript": "~4.0.3"
}
}