-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 942 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
{
"name": "definitelytyped-firefox-webext-browser",
"version": "1.0.0",
"description": "Generate typescript/definitelytyped definitions for Firefox Webextension developement.",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"watch": "tsc -p . -w",
"once": "tsc -p ."
},
"author": "Jasmin Bom",
"license": "MIT",
"private": true,
"dependencies": {
"@types/lodash": "^4.14.155",
"@types/minimist": "^1.2.0",
"@types/node": "^14.0.11",
"@types/request": "^2.48.5",
"@types/unzipper": "^0.10.3",
"fstream": "^1.0.12",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"strip-json-comments": "^3.1.0",
"to-markdown": "^3.1.1",
"typescript": "^3.9.5",
"unzipper": "^0.10.11",
"valid-url": "^1.0.9"
},
"devDependencies": {
"prettier": "^2.3.2"
}
}