-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.67 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
55
56
57
58
59
60
61
62
63
{
"name": "pika-plugin-typedefs-to-flow",
"version": "0.0.3",
"description": "A @pika/pack plugin to covert typescripts types to flow types",
"main": "index.js",
"scripts": {
"build": "rimraf pkg && pika build",
"test": "cd test && npm t",
"version": "npm run build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/atomicpages/pika-plugin-typedefs-to-flow"
},
"bugs": {
"url": "https://github.com/atomicpages/pika-plugin-typedefs-to-flow/issues"
},
"keywords": [],
"author": "Dennis Thompson",
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,js,json}": [
"prettier --write",
"eslint --fix"
],
"*.md": [
"prettier --write"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
]
]
},
"devDependencies": {
"@djthoms/eslint-config": "^4.3.0",
"@djthoms/prettier-config": "^3.0.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/mkdirp": "^1.0.0",
"flowgen": "^1.13.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"typescript": "^4.1.5"
},
"peerDependencies": {
"flowgen": ">=1.10.0"
},
"dependencies": {
"@pika/types": "^0.6.0",
"glob": "^7.0.0",
"mkdirp": "^1.0.0"
},
"prettier": "@djthoms/prettier-config"
}